3

我正在关注“ Computer-age Calculus with R ”一书,但无法运行函数 slice_plot(这是第一个用于图形函数的函数)。安装了库mosaic、mosaicCalc 和mosaicModel。我不知道我错过了什么。

这是本书所需库的代码:

library(mosaic)
library(mosaicCalc)
library(mosaicModel)
library(akima)

drug_remaining <- function(dose, duration, time_constant){
  dose * exp(-duration / time_constant)
}

slice_plot(
  drug_remaining(dose = 100, time_constant = 4, duration = t) ~ t, 
  domain(t = 0:20))

4

1 回答 1

3

我发现函数 slice_plot() 和 countour_plot() 仍在开发 beta 版本的镶嵌计算器包中,要使用它们,我们需要安装运行以下代码的 beta 版本:

remotes::install_github("ProjectMOSAIC/mosaicCalc", ref="beta")

https://github.com/ProjectMOSAIC/mosaicCalc/issues/4

于 2020-12-02T19:11:39.897 回答