rxode2random

R build status codecov.io CRAN version CRAN total downloads CRAN total downloads

CodeFactor

The goal of rxode2random is to split off the ‘rxode2’ random number generation from the ode solving and C compilation of models.

Installation

You can install the development version of rxode2random from GitHub with:

# install.packages("devtools")
devtools::install_github("nlmixr2/rxode2random")

Examples

This is mostly about random number generation so you can select a matrix from cvPost()

library(rxode2random)
cvPost(10, lotri::lotri(a+b~c(1,0.5,1)), n=3)
#> [[1]]
#>          a        b
#> a 1.536429 1.287631
#> b 1.287631 1.517315
#> 
#> [[2]]
#>           a         b
#> a 0.9435289 0.7727091
#> b 0.7727091 1.3627964
#> 
#> [[3]]
#>          a        b
#> a 2.774098 2.611791
#> b 2.611791 3.115227