Learn R Programming

odeGUTS

The goal of odeGUTS is to offer ode solver for the GUTS-RED-SD and GUTS-RED-IT model without dependency to the “morse” package

Installation

You can install the released version of odeGUTS from CRAN with:

install.packages("odeGUTS")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("bgoussen/odeGUTS")

Example

This is a basic example which shows you how to solve a common problem:

library(odeGUTS)
dataPredict <- data.frame(time = c(1:5, 1:10, 1:15), 
                          conc = c(rep(5, 5), 
                                  c(rep(0, 3), rep(12, 4), rep(0, 3)), 
                                  rep(15, 15)),  
                          replicate = c(rep("rep1", 5), rep("rep2", 10), rep("rep3", 15))) # Prepare data for forwards prediction
data(fit_odeGUTS)
out <- predict_ode(fit_odeGUTS, dataPredict)

Copy Link

Version

Install

install.packages('odeGUTS')

Monthly Downloads

294

Version

1.1.0

License

GPL (>= 3)

Issues

Pull Requests

Stars

Forks

Maintainer

Romoli Carlo

Last Published

November 5th, 2025

Functions in odeGUTS (1.1.0)

odeGUTS-package

odeGUTS: Solve ODE for GUTS-RED-SD and GUTS-RED-IT Using Compiled Code
predict_Nsurv_check

Checking goodness-of-fit method for survFitPredict and survFitPredict_Nsurv objects
predict_ode

Predict method for survFit objects
fit_odeGUTS

Model calibration results for a GUTS-SD theoretical species exposed to a compound.
%>%

Pipe operator