由于我的电脑上的R有些问题,我今天早上不得不重新安装PKPDsim,从那时起我在尝试运行以下内容时遇到此错误。像旧版本的版本不会发出此警告消息(我今天凌晨1点运行它没有这样的消息,我的同事使用较旧的安装仍然没有收到此消息,而他正在运行相同的代码)。任何帮助将不胜感激。
pk1 <- new_ode_model(code = "
dAdt[1] = -KA * A[1]
dAdt[2] = Bio*KA * A[1]-(CL/V2)*A[2]-(Q/V2)*A[2]+(Q/V3)*A[3]
dAdt[3] = (Q/V2)*A[2]-(Q/V3)*A[3]
",obs=list(cmt=2,scale="V2"))
Warning messages:
1: In if (txt < 0) return(ode_def_orig) :
the condition has length > 1 and only the first element will be used
2: In if (txt < 0) return(ode_def_orig) :
the condition has length > 1 and only the first element will be used