We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the beginning gives an incorrect model output.
mymodel <- function() { description <- "One compartment PK model with linear clearance using differential equations" dosing<-c("central", "depot") ini({ lcl <- 1 ; label("Clearance (CL)") lvc <- 3.45 ; label("Central volume of distribution (V)") propSd <- 0.5 ; label("Proportional residual error (fraction)") }) model({ d/dt(central) <- exp(lcl)/exp(lvc)*central central ~ prop(propSd) }) } mymodel |> addDepot(fdepot = 1)
The text was updated successfully, but these errors were encountered:
At the end gives an error:
mymodel <- function() { description <- "One compartment PK model with linear clearance using differential equations" dosing<-c("central", "depot") ini({ lcl <- 1 ; label("Clearance (CL)") lvc <- 3.45 ; label("Central volume of distribution (V)") propSd <- 0.5 ; label("Proportional residual error (fraction)") }) model({ central ~ prop(propSd) d/dt(central) <- exp(lcl)/exp(lvc)*central }) } mymodel |> addDepot(fdepot = 1)
Sorry, something went wrong.
No branches or pull requests
At the beginning gives an incorrect model output.
The text was updated successfully, but these errors were encountered: