我试图在我的数据(https://drive.google.com/file/d/1tBfH-BIM3Vo4Npajx2pLf4q8C7iOnpQH/view?usp=sharing)上加入一个产量-杂草密度函数,使用‘DRC.cousens85()’从'drc‘包中的自启动函数。但它不能正常工作。有什么不对的地方吗?谢谢。
> model3 <- drm(y ~ x, fct = DRC.cousens85(), data = my_data)
> plot(model3)结果看起来就像!(https://drive.google.com/file/d/170e3plbR_7MoUsdDPFJUBI6XQof3oWti/view?usp=sharing)
发布于 2022-07-04 12:42:09
只是遇到了同样的问题。实际上,DRC.cousens85()函数来自于aomisc包--它不会从CRAN下载到更新版本的R。
devtools::install_github("onofriAndreaPG/aomisc")
library(aomisc)https://stackoverflow.com/questions/58235366
复制相似问题