Skip to contents

Calls TDL5 to parse the model and get the list of terms

Usage

createModelInfo(model, ForceRun = FALSE)

Arguments

model

Model object

ForceRun

Set to TRUE to force run

Value

List of model information

Examples

# \donttest{
  model <- pkmodel(columnMap = FALSE,
                   workingDir = tempdir())
  createModelInfo(model)
#>  [1] "(covariates Gender() BodyWeight)"                                                                                                                            
#>  [2] "(stripdoses)"                                                                                                                                                
#>  [3] "(initialdosevars)"                                                                                                                                           
#>  [4] "(dosepoints1 A1)"                                                                                                                                            
#>  [5] "(dosepoints1split 0)"                                                                                                                                        
#>  [6] "(dosepoints2)"                                                                                                                                               
#>  [7] "(time)"                                                                                                                                                      
#>  [8] "(observations (CObs 0))"                                                                                                                                     
#>  [9] "(LL)"                                                                                                                                                        
#> [10] "(responses)"                                                                                                                                                 
#> [11] "(allowgaussianfit 1)"                                                                                                                                        
#> [12] "(gparms)"                                                                                                                                                    
#> [13] "(sparms V Cl V2 Cl2)"                                                                                                                                        
#> [14] "(fixedeffects (tvV -1 0 1) (tvCl -1 0 1) (tvV2 -1 0 1) (tvCl2 -1 0 1) (dVdBodyWeight 0 0 0) (dCldBodyWeight 1 0 0) (dV2dGender1 2 0 0) (dCl2dGender1 3 0 0))"
#> [15] "(submodels 0 1 2 3)"                                                                                                                                         
#> [16] "(randomeffects5 nV nCl nV2 nCl2)"                                                                                                                            
#> [17] "(omega5"                                                                                                                                                     
#> [18] " 1"                                                                                                                                                          
#> [19] " 0 1"                                                                                                                                                        
#> [20] " 0 0 1"                                                                                                                                                      
#> [21] " 0 0 0 1"                                                                                                                                                    
#> [22] ")"                                                                                                                                                           
#> [23] "(error CEps 0.1)"                                                                                                                                            
#> [24] "(secondary)"                                                                                                                                                 
#> [25] "(assigned C V Cl V2 Cl2 t)"                                                                                                                                  
#> [26] "(integrator A1 )"                                                                                                                                            
#> [27] "(ClosedForms 1 0 0)"                                                                                                                                         
# }