nlmixr2 / monolix2rx

Convert Monolix models to nlmixr2/rxode2 models
https://nlmixr2.github.io/monolix2rx/
Other
0 stars 0 forks source link

Take care of covariate transformations #6

Open mattfidler opened 8 months ago

mattfidler commented 8 months ago

Defined in $MODEL$COVARIATE$DEFINITION

mattfidler commented 8 months ago

ie

tSex = {
     transform = 'sex',
     categories = {
        'F' = {'0'},
         'M' = {'1'}  },
    reference = 'M'}")
mattfidler commented 8 months ago

And

tAPGAR =
{
  transform = APGAR, 
  categories = {
  High = {10, 8, 9},
  Low = {1, 2, 3},
  Med = {4, 5, 6, 7}  }, 
  reference = Med
}