nlmixrdevelopment / nlmixr

nlmixr: an R package for population PKPD modeling
https://nlmixrdevelopment.github.io/nlmixr/
GNU General Public License v2.0
114 stars 45 forks source link

saem + full block / nlme #22

Closed ronkeizer closed 6 years ago

ronkeizer commented 6 years ago

Hi all,

Great work on the recent developments and release! Got it to work on all platforms now, nice job on that. Basic examples run fine, but encountered a few things when exploring one of the examples a bit deeper, not sure if I'm doing something wrong... Using Oral_1CPT data, and model example as given in help:

  1. when using a full omega matrix (and using SAEM), a crash occurs:

Omega matrix used:

    eta_CL + eta_V + eta_KA ~ c(0.1,
                                0.05, 0.1,
                                0.01, 0.01, 0.1)

Error:

filed95537d84b6b.cpp:21:1001: error: no matching function for call to 'R_pow_di'
/Library/Frameworks/R.framework/Resources/include/Rmath.h:375:8: note: candidate function not viable: requires 2 arguments, but 1 was provided
double R_pow_di(double, int);
       ^
  1. using the same oral 1cmt model with diagonal matrix but estimating with nlme, I get a crash after 4th iteration:

call:

fit   <- nlmixr(object = f, 
                data = d, 
                est = "nlme")

error:

**Iteration 3
LME step: Loglik: -37499.72, nlminb iterations: 23
reStruct  parameters:
       ID1        ID2        ID3 
-0.2728802 -0.3364310 -0.5006904 
varStruct  parameters:
    const 
-2.609917 
Error in nlme.formula(model = DV ~ (nlmeModList("user_fn"))(lCL, eta_CL,  : 
  step halving factor reduced below minimum in PNLS step

Any ideas on these issues? First one seems some matrix definiteness issue perhaps? But second one occurs also with diagonal block.

Thanks!

RikSchoemaker commented 6 years ago

Hi Ron,

Great to hear you got it to work on all your platforms: congratulations! I cannot comment on your full omega matrix because I've never tried this, but I can confirm that nlme often does not converge with the default settings. What I have done so far is increase the pnlsTol parameter a significant amount. Often 0.01 works, but in this case I needed to ramp it up even further, and I have also increased the tolerance setting for one of the runs. Full syntax:

library(nlmixr)
library(data.table)

#function to add (7) doses to allow SS-type functionality, used in runN025:

SSdata<-function(data=datr,IV=FALSE){

  datSS<-data[SS==0]
  datSD<-data[SS==1]
  setkey(datSD,ID,TIME)

  #general solution to allow different times of SS dose and different II values per subject:
  datSSD<-datSD[,.(ID,TIME,II)]

  nvar<-function(TIME,II){
   for(i in seq(1,7)){
     r=TIME-(i-1)*II
     assign(paste("ret",i,sep=""),r)
   }
   return(list(r1 = ret1, r2 = ret2,r3=ret3,r4=ret4,r5=ret5,r6=ret6,r7=ret7))
  }

  #updates datSSD with 7 columns to account for the new dosing times
  datSSD[,(paste("V",seq(1,7)-1,sep="")):=nvar(TIME,II)][,TIME:=NULL][,II:=NULL]
  index<-melt(datSSD,id.vars="ID",value.name="TIMED")
  index[,variable:=NULL]
  index<-index[TIMED>0]
  setkey(index,ID,TIMED)

  datSD2<-merge(datSD,index,by=c("ID"),all=TRUE)
  datSD2[,TIME:=TIMED][,TIMED:=NULL]

  if (IV==TRUE){
    datSDoff<-copy(datSD2)
    datSDoff[,TIME:=TIME+AMT/RATE][,AMT:=-1*AMT]
    datSD2<-rbind(datSD2,datSDoff)  
  }

  datSS<-rbind(datSS,datSD2)
  setkey(datSS,ID,TIME)
  dat<-datSS
  dat
}

one.compartment.oral.model <- function(){
    ini({ # Where initial conditions/variables are specified
          # '<-' or '=' defines population parameters
          # Simple numeric expressions are supported
        lCl <- 1.6      #log Cl (L/hr)   
        lVc <- log(90)   #log V (L)   
        lKA <- 0.1      #log V (L)   
        # Bounds may be specified by c(lower, est, upper), like NONMEM:
        # Residuals errors are assumed to be population parameters
        prop.err <- c(0, 0.2, 1) 
        # Between subject variability estimates are specified by '~'
        # Semicolons are optional
        eta.Cl ~ 0.1
        eta.Vc ~ 0.1   
        eta.KA ~ 0.1
    })
    model({ # Where the model is specified
        # The model uses the ini-defined variable names
        Cl <- exp(lCl + eta.Cl)
        Vc <- exp(lVc + eta.Vc)
        KA <- exp(lKA + eta.KA)
        # RxODE-style differential equations are supported
        d/dt(depot)    = -KA*depot;
        d/dt(centr)  =  KA*depot-(Cl/Vc)*centr;
        ## Concentration is calculated
        cp = centr / Vc;
        # And is assumed to follow proportional error estimated by prop.err
        cp ~ prop(prop.err)
    })
}

datr <- read.csv("ORAL_1CPT.csv", header=TRUE,stringsAsFactors=F)
datr$EVID<-ifelse(datr$EVID==1,101,datr$EVID)
datr<-data.table(datr)
datr<-datr[EVID!=2]

runno<-"N023"
data<-datr[SD==1]
fit <- nlmixr(one.compartment.oral.model,data,est="nlme",control = nlmeControl(pnlsTol = .3, tolerance=1e-3))
save(fit,file=paste("fitNLME_ODE_UUI",runno,".Rdata",sep=""))

runno<-"N024"
data<-datr[SD==0]
fit <- nlmixr(one.compartment.oral.model,data,est="nlme",control = nlmeControl(pnlsTol = .1))
save(fit,file=paste("fitNLME_ODE_UUI",runno,".Rdata",sep=""))

runno<-"N026"
data<-datr
fit <- nlmixr(one.compartment.oral.model,data,est="nlme",control = nlmeControl(pnlsTol = .3))
save(fit,file=paste("fitNLME_ODE_UUI",runno,".Rdata",sep=""))

runno<-"N025"
data<-SSdata(datr)
fit <- nlmixr(one.compartment.oral.model,data,est="nlme",control = nlmeControl(pnlsTol = .1))
save(fit,file=paste("fitNLME_ODE_UUI",runno,".Rdata",sep=""))
mattfidler commented 6 years ago

Ron, to reproduce we also need your model f.

ronkeizer commented 6 years ago

hi @mattfidler, reproducible example below.

library(nlmixr)

d <- Oral_1CPT
d <- d[,names(d) != "SS"]
d <- nmDataConvert(d)

f <- function() {
  ini({
    lCL <- log(5)   # log Cl (L/hr)
    lV  <- log(90)  # log Vc (L)
    lKA <- log(1)   # log Ka (1/hr)
    err_prop <- c(0, 0.2, 1)
    err_add <- c(0, 0.1, 1)
    eta_CL + eta_V + eta_KA ~ c(0.1,
                                0.05, 0.1,
                                0.01, 0.01, 0.1)
  })
  model({
    CL <- exp(lCL + eta_CL)
    V  <- exp(lV  + eta_V)
    KA <- exp(lKA + eta_KA)

    d/dt(A1) = -KA*A1;
    d/dt(A2) =  KA*A1 - (CL/V)*A2;

    conc = A2 / V;

    conc ~ prop(err_prop) + add(err_add)
  })
}

fit   <- nlmixr(object = f, 
                data = d, 
                est = "saem", 
                control = saemControl(
                  n.burn = 10,  # just for quick testing, crashes as well with higher n
                  n.em = 10, 
                  print = 5
                ))
ronkeizer commented 6 years ago

@RikSchoemaker Thanks, bumping the pnlsTol seems to work! I'll play around a bit more to get some feel for it.

wwang-at-github commented 6 years ago

i think it's the small n.burn & n.em that cause trouble. when i used saem's default setting i have no trouble whatsoever fitting the data.

moving forward, we need to fix these saem options.

below is the last few lines of fitting process. 490: 1.3878 4.2026 0.0049 0.0678 0.0784 0.1123 0.0149 0.1975 491: 1.3878 4.2026 0.0049 0.0679 0.0784 0.1123 0.0149 0.1975 492: 1.3878 4.2026 0.0049 0.0679 0.0784 0.1123 0.0149 0.1975 493: 1.3878 4.2026 0.0049 0.0679 0.0784 0.1123 0.0149 0.1975 494: 1.3878 4.2026 0.0049 0.0679 0.0784 0.1123 0.0149 0.1975 495: 1.3878 4.2026 0.0049 0.0679 0.0784 0.1123 0.0149 0.1975 496: 1.3879 4.2026 0.0049 0.0679 0.0784 0.1123 0.0149 0.1975 497: 1.3878 4.2026 0.0049 0.0679 0.0783 0.1123 0.0149 0.1975 498: 1.3879 4.2025 0.0049 0.0679 0.0783 0.1124 0.0149 0.1975 499: 1.3879 4.2026 0.0049 0.0679 0.0783 0.1124 0.0149 0.1975 500: 1.3879 4.2026 0.0050 0.0679 0.0783 0.1124 0.0148 0.1975 Using sympy via SnakeCharmR ## Calculate ETA-based prediction and error derivatives: Calculate Jacobian.....................done. Calculate sensitivities....... done. ## Calculate d(f)/d(eta) ## ... ## done ## ...

done ccache.exe C:/Rtools/mingw_32/bin/gcc

-I"C:/utils/R/R-33~1.3/include" -DNDEBUG -I"d:/Compiler/gcc-4.9.3/local330/include" -O3 -Wall -std=gnu99 -mtune=core2 -c rx_9c8046eb5c4693f1d359ba8829b03a0a_i386.c -o rx_9c8046eb5c4693f1d359ba8829b03a0a_i386.o ccache.exe C:/Rtools/mingw_32/bin/gcc -shared -s -static-libgcc -o rx_9c8046eb5c4693f1d359ba8829b03a0a_i386.dll tmp.def rx_9c8046eb5c4693f1d359ba8829b03a0a_i386.o -LC:/utils/R/R-33~1.3/bin/i386 -lRblas -LC:/utils/R/R-33~1.3/bin/i386 -lRlapack -lgfortran -lm -lquadmath -Ld:/Compiler/gcc-4.9.3/local330/lib/i386 -Ld:/Compiler/gcc-4.9.3/local330/lib -LC:/utils/R/R-33~1.3/bin/i386 -lR ccache.exe C:/Rtools/mingw_32/bin/gcc -I"C:/utils/R/R-33~1.3/include" -DNDEBUG -I"d:/Compiler/gcc-4.9.3/local330/include" -O3 -Wall -std=gnu99 -mtune=core2 -c rx_1ceb44eb7ca72e0b8d5a6dd2523b2c44_i386.c -o rx_1ceb44eb7ca72e0b8d5a6dd2523b2c44_i386.o ccache.exe C:/Rtools/mingw_32/bin/gcc -shared -s -static-libgcc -o rx_1ceb44eb7ca72e0b8d5a6dd2523b2c44_i386.dll tmp.def rx_1ceb44eb7ca72e0b8d5a6dd2523b2c44_i386.o -LC:/utils/R/R-33~1.3/bin/i386 -lRblas -LC:/utils/R/R-33~1.3/bin/i386 -lRlapack -lgfortran -lm -lquadmath -Ld:/Compiler/gcc-4.9.3/local330/lib/i386 -Ld:/Compiler/gcc-4.9.3/local330/lib -LC:/utils/R/R-33~1.3/bin/i386 -lR The model-based sensitivities have been calculated. It will be cached for future runs. Diagonal form: sqrt [,1] [,2] [,3] [1,] 1 1 1 [2,] 1 1 1 [3,] 1 1 1 Calculate symbolic inverse...done Calculate symbolic determinant of inverse...done Calculate d(Omega)/d(Est) and d(Omega^-1)/d(Est)... .0 .....5.....10.....15.....20.....25.....30.....35.....40.....45.....50 .....55.....60.....65.....70.....75.....80.....85.....90.....95.....100 .....105.....110.....115.....120.....125done. Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Calculating Table Variables... Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). Warning: Omega^-1 not positive definite (correcting with nearPD). done Warning message: In collectWarnings(do.call(focei.fit.data.frame0, call, envir = parent.frame(1))) : NaNs produced

and the output:

fit nlmixr SAEM fit (ODE) OBJF AIC BIC Log-likelihood 342283.5 342305.5 342380.8 -171141.8 Time (sec; $time): saem setup Likelihood Calculation covariance table elapsed 1489.32 176.34 5.81 0 18.38 Parameters ($par.fixed): Parameter Estimate SE CV Untransformed (95%CI) lCL log Cl (L/hr) 1.39 0.0239 1.7% 4.01 (3.82, 4.20) lV log Vc (L) 4.20 0.0257 0.6% 66.9 (63.6, 70.3) lKA log Ka (1/hr) 0.00495 0.0318 643.0% 1.00 (0.944, 1.07) err_prop err_prop 0.197 19.7% err_add err_add 0.0148 0.0148 Omega ($omega): eta_CL eta_V eta_KA eta_CL 0.067856844 -1.811874e-03 0.2799015544 eta_V -0.001811874 1.289217e-05 0.0009594043 eta_KA 0.279901554 9.594043e-04 0.1123586939 Fit Data (object is a modified data.frame): ID TIME DV IPRED PRED IRES RES IWRES WRES CWRES 1: 1 0.25 204.8 185.191934 197.83131 19.60806583 6.968689 0.5361561 0.1015361 0.1139308 2: 1 0.50 310.6 322.646722 348.76985 -12.04672168 -38.169852 -0.1890689 -0.3515347 -0.3807859 3: 1 0.75 389.2 424.035567 463.27732 -34.83556676 -74.077319 -0.4160056 -0.5711783 -0.6308038 --- 6945: 120 264.00 11.3 14.225779 70.50397 -2.92577927 -59.203974 -1.0414490 -0.8837446 -1.5347275 6946: 120 276.00 3.9 4.599649 34.34975 -0.69964868 -30.449752 -0.7701512 -0.7781248 -1.5315991 6947: 120 288.00 1.4 1.487215 16.73532 -0.08721485 -15.335316 -0.2965798 -0.6893987 -1.5090123 CPRED CRES eta_CL eta_V eta_KA 1: 197.548718 7.251282 0.1019013 0.1590283 0.1060390 2: 348.176188 -37.576188 0.1019013 0.1590283 0.1060390 3: 462.291906 -73.091906 0.1019013 0.1590283 0.1060390 --- 6945: 41.607613 -30.307613 0.3212509 -0.1299407 -0.2743222 6946: 15.796275 -11.896275 0.3212509 -0.1299407 -0.2743222 6947: 5.865075 -4.465075 0.3212509 -0.1299407 -0.2743222

On Tue, Nov 21, 2017 at 1:51 PM, Ron Keizer notifications@github.com wrote:

@RikSchoemaker https://github.com/rikschoemaker Thanks, bumping the pnlsTol seems to work! I'll play around a bit more to get some feel for it.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/nlmixrdevelopment/nlmixr/issues/22#issuecomment-346124448, or mute the thread https://github.com/notifications/unsubscribe-auth/AMdZdv7ap-Iu-tCHWUMwXVRqckARdpYFks5s4xucgaJpZM4QlUbQ .

ronkeizer commented 6 years ago

Thanks for looking into this. I actually do see the exact same crash with default SAEM options. Perhaps a compiler / environment issue that's not present on Windows (I'm on Mac + clang)? Should I force nlmixr to use g++ and not clang? I will try later this week on Windows to see if I can reproduce. Full output is here (quite long so didn't paste here): https://www.dropbox.com/s/j0wc9j3k23mbey9/nlmixr_saem_20171121.txt?dl=0

wwang-at-github commented 6 years ago

this example runs fine on my mac.

On Tue, Nov 21, 2017 at 1:06 PM, Ron Keizer notifications@github.com wrote:

Thanks for looking into this. I actually do see the exact same crash with default SAEM options. Perhaps a compiler / environment issue that's not present on Windows (I'm on Mac + clang)? Should I force nlmixr to use g++ and not clang? I will try later this week on Windows to see if I can reproduce. Full output is here (quite long so didn't paste here): https://www.dropbox.com/s/j0wc9j3k23mbey9/nlmixr_saem_20171121.txt?dl=0

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/nlmixrdevelopment/nlmixr/issues/22#issuecomment-346160844, or mute the thread https://github.com/notifications/unsubscribe-auth/AMdZdkNhdZMjqnkCJa1ng0rVY2QEU-hiks5s4ztBgaJpZM4QlUbQ .

R version 3.4.2 (2017-09-28) -- "Short Summer" Copyright (C) 2017 The R Foundation for Statistical Computing Platform: x86_64-apple-darwin15.6.0 (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details.

Natural language support but running in an English locale

R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R.

library(nlmixr) Loading required package: nlme Loading required package: RxODE

d <- Oral_1CPT d <- d[,names(d) != "SS"] d <- nmDataConvert(d) Warning message: In nmDataConvert(d) : EVID=2 is dropped from RxODE/nlmixr datasets.

f <- function() {

  • ini({
  • lCL <- log(5) # log Cl (L/hr)
  • lV <- log(90) # log Vc (L)
  • lKA <- log(1) # log Ka (1/hr)
  • err_prop <- c(0, 0.2, 1)
  • err_add <- c(0, 0.1, 1)
  • eta_CL + eta_V + eta_KA ~ c(0.1,
  • 0.05, 0.1,
  • 0.01, 0.01, 0.1)
  • })
  • model({
  • CL <- exp(lCL + eta_CL)
  • V <- exp(lV + eta_V)
  • KA <- exp(lKA + eta_KA)
  • d/dt(A1) = -KA*A1;
  • d/dt(A2) = KAA1 - (CL/V)A2;
  • conc = A2 / V;
  • conc ~ prop(err_prop) + add(err_add)
  • })
  • } fit <- nlmixr(object = f,
  • data = d,
  • est = "saem") Compiling RxODE differential equations...done. clang++ -I/Library/Frameworks/R.framework/Resources/include -DNDEBUG -I/usr/local/include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/nlmixr//include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/StanHeaders//include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/Rcpp//include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/RcppArmadillo//include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/RcppEigen//include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/BH//include -fPIC -Wall -g -O2 -c saem1f6cb7a097.cpp -o saem1f6cb7a097.o clang++ -dynamiclib -Wl,-headerpad_max_install_names -undefined dynamic_lookup -single_module -multiply_defined suppress -L/Library/Frameworks/R.framework/Resources/lib -L/usr/local/lib -o saem1f6cb7a097.so saem1f6cb7a097.o /Users/annie/rxc5a52e2bc2a21ffa162d021e50bcc8fb.so -L/Library/Frameworks/R.framework/Resources/lib -lRblas -L/Library/Frameworks/R.framework/Resources/lib -lRlapack -L/usr/local/gfortran/lib/gcc/x86_64-apple-darwin15/6.1.0 -L/usr/local/gfortran/lib -lgfortran -lquadmath -lm -F/Library/Frameworks/R.framework/.. -framework R -Wl,-framework -Wl,CoreFoundation done. 1: 1.8507 4.6023 -0.0351 0.0950 0.0950 0.0950 50.7610 0.5372 2: 1.7246 4.4862 0.0231 0.0902 0.0902 0.0902 2.2590 0.6800 3: 1.6653 4.4888 0.0276 0.0857 0.0857 0.0857 8.7817 0.4630 4: 1.5875 4.4159 0.0632 0.0815 0.0815 0.0815 1.1870 0.4494 5: 1.5422 4.3758 0.0720 0.0774 0.0774 0.0816 1.9575 0.3509 6: 1.5017 4.3334 0.0854 0.0735 0.0735 0.0776 0.3135 0.3021 7: 1.4663 4.3025 0.0816 0.0775 0.0738 0.0786 0.3719 0.2651 8: 1.4432 4.2801 0.0843 0.0754 0.0733 0.0791 0.0925 0.2426 9: 1.4339 4.2700 0.0878 0.0762 0.0730 0.0816 0.0778 0.2229 10: 1.4252 4.2578 0.0766 0.0755 0.0716 0.0855 0.0293 0.2159 11: 1.4188 4.2499 0.0780 0.0756 0.0716 0.0891 0.0209 0.2111 12: 1.4135 4.2450 0.0668 0.0750 0.0718 0.0878 0.0252 0.2070 13: 1.4118 4.2389 0.0617 0.0750 0.0735 0.0914 0.0268 0.2062 14: 1.4094 4.2360 0.0449 0.0740 0.0736 0.0909 0.0266 0.2041 15: 1.4068 4.2311 0.0332 0.0719 0.0742 0.0916 0.0314 0.2030 16: 1.4037 4.2282 0.0270 0.0721 0.0745 0.0939 0.0273 0.2025 17: 1.4022 4.2264 0.0318 0.0722 0.0737 0.0971 0.0319 0.2017 18: 1.4009 4.2239 0.0292 0.0720 0.0742 0.1049 0.0259 0.2023 19: 1.4000 4.2226 0.0294 0.0723 0.0753 0.1024 0.0335 0.2012 20: 1.3996 4.2184 0.0273 0.0726 0.0751 0.1012 0.0271 0.2012 21: 1.3965 4.2136 0.0292 0.0723 0.0751 0.1000 0.0237 0.2015 22: 1.3940 4.2098 0.0222 0.0716 0.0754 0.1032 0.0216 0.2001 23: 1.3933 4.2090 0.0222 0.0715 0.0764 0.1097 0.0187 0.1995 24: 1.3917 4.2083 0.0276 0.0709 0.0776 0.1100 0.0212 0.1990 25: 1.3926 4.2081 0.0194 0.0706 0.0785 0.1090 0.0129 0.1982 26: 1.3915 4.2065 0.0167 0.0705 0.0790 0.1079 0.0132 0.1992 27: 1.3925 4.2077 0.0092 0.0697 0.0805 0.1054 0.0148 0.1984 28: 1.3933 4.2085 0.0175 0.0699 0.0794 0.1123 0.0146 0.1990 29: 1.3927 4.2096 0.0179 0.0697 0.0793 0.1119 0.0117 0.1987 30: 1.3913 4.2081 0.0117 0.0708 0.0777 0.1162 0.0179 0.1975 31: 1.3903 4.2049 0.0072 0.0705 0.0768 0.1152 0.0263 0.1978 32: 1.3894 4.2022 0.0045 0.0708 0.0780 0.1225 0.0211 0.1972 33: 1.3883 4.2006 0.0078 0.0703 0.0757 0.1209 0.0211 0.1972 34: 1.3890 4.2045 0.0115 0.0701 0.0773 0.1161 0.0264 0.1971 35: 1.3875 4.2050 0.0129 0.0692 0.0780 0.1157 0.0181 0.1966 36: 1.3897 4.2055 0.0134 0.0689 0.0777 0.1174 0.0138 0.1972 37: 1.3905 4.2077 0.0180 0.0692 0.0774 0.1193 0.0217 0.1973 38: 1.3894 4.2079 0.0254 0.0684 0.0773 0.1214 0.0165 0.1971 39: 1.3892 4.2062 0.0138 0.0685 0.0781 0.1198 0.0183 0.1967 40: 1.3903 4.2092 0.0131 0.0682 0.0801 0.1148 0.0134 0.1974 41: 1.3895 4.2067 0.0018 0.0677 0.0781 0.1122 0.0115 0.1976 42: 1.3906 4.2067 0.0093 0.0675 0.0785 0.1119 0.0148 0.1975 43: 1.3916 4.2050 -0.0048 0.0673 0.0778 0.1103 0.0154 0.1982 44: 1.3910 4.2028 0.0001 0.0673 0.0767 0.1160 0.0174 0.1985 45: 1.3910e+00 4.2044e+00 4.9817e-05 6.7497e-02 7.7368e-02 1.1117e-01 1.7408e-02 1.9854e-01 46: 1.3904 4.2024 0.0083 0.0677 0.0761 0.1122 0.0126 0.1988 47: 1.3898 4.2038 0.0122 0.0678 0.0764 0.1122 0.0125 0.1980 48: 1.3892e+00 4.2038e+00 6.5524e-05 6.7618e-02 7.4854e-02 1.0828e-01 1.5718e-02 1.9763e-01 49: 1.3896 4.2058 -0.0004 0.0683 0.0755 0.1102 0.0104 0.1985 50: 1.3894 4.2023 0.0019 0.0685 0.0753 0.1082 0.0211 0.1979 51: 1.3893 4.2040 0.0085 0.0682 0.0751 0.1094 0.0154 0.1989 52: 1.3913 4.2047 0.0038 0.0684 0.0750 0.1132 0.0169 0.1980 53: 1.3908 4.2061 0.0077 0.0694 0.0757 0.1144 0.0120 0.1991 54: 1.3914 4.2086 0.0156 0.0700 0.0778 0.1138 0.0165 0.1982 55: 1.3911 4.2067 0.0174 0.0695 0.0773 0.1137 0.0233 0.1981 56: 1.3910 4.2051 0.0094 0.0691 0.0772 0.1131 0.0233 0.1981 57: 1.3910 4.2078 0.0079 0.0698 0.0786 0.1124 0.0299 0.1970 58: 1.3899 4.2076 0.0114 0.0708 0.0782 0.1123 0.0174 0.1980 59: 1.3886 4.2048 0.0102 0.0703 0.0783 0.1107 0.0194 0.1979 60: 1.3901 4.2044 0.0167 0.0702 0.0761 0.1100 0.0160 0.1966 61: 1.3900 4.2055 0.0055 0.0702 0.0765 0.1110 0.0200 0.1972 62: 1.3911 4.2042 0.0026 0.0699 0.0760 0.1168 0.0180 0.1974 63: 1.3896 4.2045 0.0122 0.0696 0.0761 0.1118 0.0163 0.1974 64: 1.3895 4.2039 0.0165 0.0699 0.0771 0.1062 0.0120 0.1977 65: 1.3890 4.2034 0.0165 0.0700 0.0759 0.1090 0.0151 0.1977 66: 1.3888 4.2016 0.0180 0.0702 0.0755 0.1106 0.0116 0.1974 67: 1.3882 4.2050 0.0143 0.0698 0.0760 0.1102 0.0149 0.1972 68: 1.3882 4.2051 0.0137 0.0705 0.0775 0.1047 0.0149 0.1972 69: 1.3905 4.2053 0.0072 0.0701 0.0769 0.1099 0.0149 0.1972 70: 1.3902 4.2051 0.0058 0.0697 0.0764 0.1108 0.0176 0.1980 71: 1.3909 4.2067 0.0135 0.0695 0.0762 0.1131 0.0116 0.1983 72: 1.3908 4.2065 0.0054 0.0690 0.0760 0.1116 0.0135 0.1978 73: 1.3896 4.2057 0.0176 0.0689 0.0776 0.1113 0.0116 0.1983 74: 1.3898 4.2060 0.0170 0.0694 0.0779 0.1134 0.0130 0.1976 75: 1.3888 4.2057 0.0187 0.0693 0.0782 0.1149 0.0125 0.1987 76: 1.3883 4.2047 0.0091 0.0706 0.0782 0.1167 0.0152 0.1979 77: 1.3880 4.2035 0.0161 0.0711 0.0796 0.1188 0.0159 0.1974 78: 1.3895 4.2033 0.0081 0.0699 0.0782 0.1129 0.0189 0.1973 79: 1.3894 4.2033 0.0070 0.0702 0.0777 0.1169 0.0151 0.1977 80: 1.3887 4.2025 0.0087 0.0703 0.0768 0.1125 0.0170 0.1980 81: 1.3882 4.2046 0.0055 0.0696 0.0785 0.1108 0.0182 0.1975 82: 1.3890 4.2060 0.0054 0.0695 0.0786 0.1081 0.0182 0.1975 83: 1.3902 4.2070 0.0089 0.0691 0.0784 0.1093 0.0152 0.1975 84: 1.3907 4.2047 0.0062 0.0690 0.0783 0.1099 0.0182 0.1982 85: 1.3903 4.2061 0.0106 0.0690 0.0795 0.1126 0.0189 0.1978 86: 1.3895 4.2040 0.0026 0.0682 0.0798 0.1085 0.0173 0.1976 87: 1.3888 4.2046 0.0045 0.0689 0.0799 0.1118 0.0173 0.1976 88: 1.3895 4.2041 0.0213 0.0690 0.0802 0.1190 0.0195 0.1972 89: 1.3894 4.2066 0.0179 0.0684 0.0807 0.1159 0.0185 0.1975 90: 1.3895 4.2081 0.0144 0.0683 0.0815 0.1126 0.0168 0.1980 91: 1.3899 4.2073 0.0201 0.0684 0.0796 0.1154 0.0171 0.1976 92: 1.3878 4.2053 0.0156 0.0689 0.0801 0.1207 0.0171 0.1976 93: 1.3880 4.2043 0.0070 0.0685 0.0785 0.1185 0.0142 0.1969 94: 1.3887 4.2051 0.0053 0.0678 0.0772 0.1256 0.0124 0.1965 95: 1.3882 4.2054 0.0046 0.0683 0.0784 0.1212 0.0062 0.1974 96: 1.3888 4.2043 0.0060 0.0676 0.0767 0.1154 0.0095 0.1977 97: 1.3877 4.2026 0.0063 0.0688 0.0763 0.1111 0.0131 0.1984 98: 1.3877 4.2032 0.0061 0.0687 0.0760 0.1055 0.0091 0.1967 99: 1.3868 4.2024 0.0036 0.0689 0.0767 0.1103 0.0089 0.1970 100: 1.3870 4.2057 0.0118 0.0688 0.0798 0.1104 0.0138 0.1964 101: 1.3870 4.2049 0.0052 0.0677 0.0790 0.1097 0.0169 0.1961 102: 1.3885 4.2058 0.0051 0.0681 0.0812 0.1124 0.0114 0.1968 103: 1.3889 4.2035 0.0146 0.0671 0.0794 0.1088 0.0209 0.1970 104: 1.3882 4.2059 0.0138 0.0682 0.0811 0.1033 0.0133 0.1973 105: 1.3894 4.2063 0.0129 0.0684 0.0801 0.0997 0.0165 0.1973 106: 1.3890 4.2047 0.0029 0.0679 0.0782 0.0982 0.0181 0.1982 107: 1.3894 4.2058 -0.0009 0.0676 0.0778 0.1000 0.0189 0.1968 108: 1.3883 4.2026 0.0052 0.0682 0.0772 0.1042 0.0202 0.1979 109: 1.3879 4.2030 0.0066 0.0684 0.0785 0.1115 0.0202 0.1979 110: 1.3896 4.2049 0.0031 0.0679 0.0780 0.1072 0.0241 0.1974 111: 1.3894 4.2046 0.0051 0.0675 0.0784 0.1116 0.0184 0.1984 112: 1.3889 4.2039 0.0046 0.0678 0.0780 0.1121 0.0184 0.1984 113: 1.3888 4.2036 0.0036 0.0678 0.0795 0.1134 0.0122 0.1973 114: 1.3873 4.2038 0.0070 0.0680 0.0803 0.1153 0.0208 0.1974 115: 1.3866 4.2020 0.0154 0.0679 0.0791 0.1147 0.0155 0.1967 116: 1.3869 4.2010 0.0013 0.0685 0.0791 0.1143 0.0162 0.1976 117: 1.3872 4.2035 0.0074 0.0687 0.0799 0.1117 0.0172 0.1972 118: 1.3867 4.2044 0.0148 0.0685 0.0804 0.1094 0.0155 0.1971 119: 1.3877 4.2035 0.0175 0.0689 0.0802 0.1067 0.0156 0.1968 120: 1.3884 4.2043 0.0111 0.0681 0.0789 0.1068 0.0180 0.1969 121: 1.3890 4.2043 0.0124 0.0679 0.0802 0.1112 0.0149 0.1968 122: 1.3864 4.1993 0.0109 0.0690 0.0796 0.1164 0.0122 0.1975 123: 1.3874 4.2012 0.0059 0.0692 0.0817 0.1106 0.0161 0.1973 124: 1.3862 4.2005 -0.0050 0.0691 0.0814 0.1078 0.0149 0.1969 125: 1.3860 4.2004 0.0038 0.0684 0.0809 0.1099 0.0217 0.1964 126: 1.3862 4.2014 -0.0009 0.0685 0.0793 0.1044 0.0130 0.1963 127: 1.3863 4.1996 0.0056 0.0683 0.0790 0.1113 0.0109 0.1973 128: 1.3868 4.2001 -0.0019 0.0687 0.0777 0.1139 0.0122 0.1971 129: 1.3865 4.2024 0.0045 0.0688 0.0767 0.1120 0.0092 0.1970 130: 1.3880 4.2037 0.0126 0.0683 0.0765 0.1064 0.0123 0.1967 131: 1.3899 4.2052 0.0178 0.0681 0.0765 0.1125 0.0080 0.1979 132: 1.3895 4.2026 0.0097 0.0678 0.0749 0.1107 0.0067 0.1974 133: 1.3888 4.2039 0.0066 0.0677 0.0762 0.1078 0.0097 0.1974 134: 1.3902 4.2037 0.0073 0.0672 0.0741 0.1113 0.0104 0.1977 135: 1.3886 4.2045 0.0105 0.0681 0.0754 0.1152 0.0064 0.1981 136: 1.3884 4.2049 0.0079 0.0678 0.0761 0.1168 0.0109 0.1964 137: 1.3879 4.2042 0.0094 0.0673 0.0761 0.1224 0.0141 0.1968 138: 1.3898 4.2052 0.0161 0.0676 0.0745 0.1185 0.0079 0.1972 139: 1.3895 4.2074 0.0180 0.0675 0.0772 0.1131 0.0116 0.1973 140: 1.3890 4.2070 0.0128 0.0679 0.0771 0.1152 0.0124 0.1978 141: 1.3918 4.2087 0.0200 0.0676 0.0773 0.1228 0.0151 0.1969 142: 1.3895 4.2062 0.0171 0.0683 0.0770 0.1167 0.0151 0.1969 143: 1.3889 4.2060 0.0230 0.0688 0.0781 0.1203 0.0122 0.1967 144: 1.3903 4.2077 0.0205 0.0676 0.0775 0.1222 0.0122 0.1967 145: 1.3888 4.2062 0.0156 0.0684 0.0777 0.1161 0.0122 0.1967 146: 1.3896 4.2059 0.0174 0.0689 0.0767 0.1145 0.0106 0.1960 147: 1.3918 4.2064 0.0176 0.0679 0.0760 0.1177 0.0087 0.1963 148: 1.3912 4.2072 0.0161 0.0681 0.0769 0.1165 0.0112 0.1973 149: 1.3906 4.2058 0.0129 0.0677 0.0769 0.1145 0.0102 0.1980 150: 1.3894 4.2057 0.0176 0.0672 0.0765 0.1088 0.0102 0.1980 151: 1.3895 4.2062 0.0101 0.0669 0.0783 0.1056 0.0140 0.1971 152: 1.3889 4.2050 0.0177 0.0672 0.0785 0.1104 0.0094 0.1974 153: 1.3902 4.2071 0.0196 0.0672 0.0762 0.1117 0.0122 0.1966 154: 1.3902 4.2074 0.0141 0.0671 0.0775 0.1097 0.0189 0.1967 155: 1.3909 4.2073 0.0051 0.0669 0.0786 0.1118 0.0162 0.1966 156: 1.3895 4.2070 0.0121 0.0672 0.0768 0.1163 0.0152 0.1972 157: 1.3906 4.2076 0.0053 0.0676 0.0772 0.1128 0.0080 0.1969 158: 1.3907 4.2077 0.0112 0.0678 0.0798 0.1103 0.0116 0.1974 159: 1.3906 4.2072 0.0109 0.0680 0.0775 0.1109 0.0116 0.1974 160: 1.3894 4.2069 0.0155 0.0680 0.0775 0.1136 0.0151 0.1972 161: 1.3899 4.2047 0.0058 0.0680 0.0786 0.1137 0.0201 0.1968 162: 1.3891 4.2061 0.0069 0.0684 0.0792 0.1135 0.0093 0.1983 163: 1.3904 4.2064 0.0083 0.0680 0.0773 0.1108 0.0104 0.1976 164: 1.3894 4.2060 0.0159 0.0683 0.0769 0.1082 0.0129 0.1980 165: 1.3888 4.2047 0.0126 0.0688 0.0777 0.1117 0.0133 0.1971 166: 1.3890 4.2036 0.0102 0.0690 0.0767 0.1142 0.0133 0.1971 167: 1.3897 4.2045 0.0134 0.0691 0.0763 0.1250 0.0136 0.1975 168: 1.3885 4.2040 0.0129 0.0688 0.0752 0.1224 0.0113 0.1972 169: 1.3885 4.2039 0.0102 0.0681 0.0772 0.1174 0.0143 0.1972 170: 1.3896 4.2057 0.0047 0.0679 0.0784 0.1162 0.0114 0.1973 171: 1.3911 4.2086 0.0114 0.0677 0.0779 0.1147 0.0134 0.1982 172: 1.3913 4.2073 0.0124 0.0672 0.0776 0.1108 0.0123 0.1979 173: 1.3908 4.2090 0.0171 0.0671 0.0778 0.1103 0.0155 0.1978 174: 1.3912 4.2088 0.0075 0.0678 0.0781 0.1125 0.0155 0.1978 175: 1.3899 4.2067 0.0115 0.0686 0.0784 0.1143 0.0150 0.1982 176: 1.3895 4.2074 0.0098 0.0687 0.0762 0.1086 0.0134 0.1975 177: 1.3901 4.2058 0.0068 0.0687 0.0763 0.1101 0.0106 0.1981 178: 1.3897 4.2063 0.0100 0.0696 0.0764 0.1116 0.0084 0.1983 179: 1.3894 4.2051 0.0098 0.0694 0.0772 0.1118 0.0050 0.1986 180: 1.3899 4.2073 0.0055 0.0687 0.0776 0.1132 0.0061 0.1982 181: 1.3897 4.2056 0.0070 0.0687 0.0772 0.1165 0.0101 0.1976 182: 1.3897 4.2076 0.0058 0.0692 0.0778 0.1097 0.0055 0.1982 183: 1.3892 4.2072 0.0106 0.0694 0.0781 0.1152 0.0103 0.1971 184: 1.3907 4.2077 0.0068 0.0692 0.0766 0.1171 0.0103 0.1971 185: 1.3884 4.2022 0.0033 0.0692 0.0763 0.1088 0.0103 0.1971 186: 1.3905 4.2050 -0.0006 0.0687 0.0771 0.1103 0.0136 0.1975 187: 1.3902 4.2032 0.0010 0.0692 0.0770 0.1088 0.0112 0.1976 188: 1.3909 4.2055 0.0082 0.0684 0.0784 0.1098 0.0197 0.1983 189: 1.3902 4.2066 0.0100 0.0682 0.0779 0.1100 0.0205 0.1979 190: 1.3896 4.2061 0.0097 0.0681 0.0781 0.1192 0.0205 0.1979 191: 1.3886 4.2029 0.0105 0.0686 0.0772 0.1164 0.0147 0.1977 192: 1.3879 4.2034 0.0104 0.0679 0.0779 0.1180 0.0197 0.1970 193: 1.3881 4.2016 0.0138 0.0680 0.0769 0.1222 0.0197 0.1970 194: 1.3887 4.2018 0.0095 0.0683 0.0768 0.1228 0.0136 0.1970 195: 1.3896 4.2016 0.0106 0.0681 0.0773 0.1245 0.0105 0.1970 196: 1.3886 4.2025 0.0077 0.0682 0.0784 0.1217 0.0165 0.1975 197: 1.3870 4.2012 0.0026 0.0689 0.0789 0.1154 0.0144 0.1974 198: 1.3854 4.2027 0.0018 0.0693 0.0781 0.1156 0.0173 0.1975 199: 1.3869 4.2035 0.0118 0.0685 0.0789 0.1155 0.0150 0.1973 200: 1.3876 4.2042 0.0056 0.0680 0.0796 0.1142 0.0125 0.1966 201: 1.3873 4.2039 0.0092 0.0681 0.0798 0.1139 0.0108 0.1969 202: 1.3873 4.2034 0.0085 0.0681 0.0798 0.1130 0.0117 0.1969 203: 1.3869 4.2029 0.0051 0.0683 0.0799 0.1113 0.0117 0.1970 204: 1.3868 4.2027 0.0045 0.0683 0.0801 0.1104 0.0136 0.1970 205: 1.3868 4.2020 0.0037 0.0682 0.0798 0.1099 0.0141 0.1970 206: 1.3867 4.2016 0.0041 0.0682 0.0797 0.1095 0.0145 0.1970 207: 1.3867 4.2016 0.0038 0.0681 0.0797 0.1085 0.0146 0.1969 208: 1.3867 4.2019 0.0044 0.0681 0.0798 0.1091 0.0142 0.1970 209: 1.3868 4.2019 0.0042 0.0681 0.0797 0.1094 0.0143 0.1970 210: 1.3867 4.2020 0.0043 0.0681 0.0797 0.1094 0.0146 0.1970 211: 1.3867 4.2018 0.0039 0.0681 0.0796 0.1094 0.0147 0.1970 212: 1.3868 4.2017 0.0040 0.0681 0.0797 0.1095 0.0149 0.1970 213: 1.3869 4.2017 0.0046 0.0681 0.0796 0.1094 0.0150 0.1970 214: 1.3869 4.2016 0.0049 0.0681 0.0796 0.1095 0.0147 0.1970 215: 1.3868 4.2015 0.0042 0.0681 0.0796 0.1095 0.0146 0.1970 216: 1.3868 4.2015 0.0045 0.0681 0.0796 0.1097 0.0145 0.1970 217: 1.3868 4.2015 0.0049 0.0681 0.0796 0.1097 0.0144 0.1971 218: 1.3868 4.2016 0.0049 0.0680 0.0796 0.1096 0.0145 0.1971 219: 1.3868 4.2016 0.0047 0.0680 0.0796 0.1094 0.0145 0.1971 220: 1.3868 4.2016 0.0040 0.0680 0.0795 0.1094 0.0146 0.1971 221: 1.3869 4.2016 0.0040 0.0680 0.0794 0.1093 0.0146 0.1971 222: 1.3869 4.2016 0.0039 0.0680 0.0793 0.1095 0.0143 0.1972 223: 1.3870 4.2016 0.0037 0.0680 0.0792 0.1094 0.0142 0.1972 224: 1.3870 4.2017 0.0039 0.0680 0.0792 0.1094 0.0138 0.1972 225: 1.3870 4.2018 0.0042 0.0680 0.0791 0.1094 0.0137 0.1972 226: 1.3871 4.2019 0.0044 0.0680 0.0791 0.1094 0.0136 0.1971 227: 1.3872 4.2019 0.0046 0.0680 0.0791 0.1094 0.0138 0.1971 228: 1.3872 4.2020 0.0046 0.0679 0.0791 0.1093 0.0137 0.1971 229: 1.3872 4.2020 0.0045 0.0679 0.0791 0.1090 0.0136 0.1971 230: 1.3872 4.2021 0.0045 0.0679 0.0791 0.1091 0.0137 0.1971 231: 1.3873 4.2021 0.0043 0.0679 0.0791 0.1090 0.0137 0.1971 232: 1.3873 4.2020 0.0042 0.0679 0.0791 0.1088 0.0138 0.1971 233: 1.3873 4.2020 0.0040 0.0679 0.0790 0.1086 0.0139 0.1971 234: 1.3873 4.2020 0.0040 0.0679 0.0790 0.1085 0.0141 0.1971 235: 1.3873 4.2020 0.0042 0.0679 0.0790 0.1086 0.0142 0.1971 236: 1.3873 4.2021 0.0042 0.0680 0.0790 0.1088 0.0142 0.1971 237: 1.3873 4.2021 0.0042 0.0680 0.0790 0.1089 0.0144 0.1971 238: 1.3874 4.2021 0.0042 0.0680 0.0790 0.1090 0.0145 0.1971 239: 1.3874 4.2021 0.0043 0.0680 0.0789 0.1091 0.0144 0.1971 240: 1.3875 4.2021 0.0042 0.0680 0.0789 0.1093 0.0145 0.1971 241: 1.3875 4.2021 0.0040 0.0681 0.0789 0.1094 0.0146 0.1971 242: 1.3875 4.2020 0.0039 0.0681 0.0788 0.1095 0.0146 0.1971 243: 1.3875 4.2020 0.0037 0.0681 0.0788 0.1096 0.0147 0.1971 244: 1.3875 4.2020 0.0035 0.0681 0.0787 0.1096 0.0149 0.1971 245: 1.3875 4.2019 0.0034 0.0681 0.0787 0.1097 0.0150 0.1971 246: 1.3875 4.2018 0.0034 0.0681 0.0787 0.1097 0.0150 0.1971 247: 1.3874 4.2018 0.0031 0.0681 0.0787 0.1097 0.0150 0.1971 248: 1.3874 4.2017 0.0028 0.0681 0.0787 0.1097 0.0150 0.1971 249: 1.3873 4.2017 0.0025 0.0681 0.0787 0.1097 0.0150 0.1971 250: 1.3873 4.2017 0.0024 0.0681 0.0787 0.1097 0.0152 0.1971 251: 1.3873 4.2016 0.0024 0.0681 0.0787 0.1096 0.0153 0.1971 252: 1.3873 4.2015 0.0024 0.0681 0.0787 0.1095 0.0153 0.1971 253: 1.3872 4.2015 0.0025 0.0681 0.0787 0.1094 0.0154 0.1971 254: 1.3872 4.2015 0.0025 0.0681 0.0787 0.1093 0.0155 0.1971 255: 1.3872 4.2015 0.0026 0.0681 0.0787 0.1094 0.0156 0.1971 256: 1.3872 4.2016 0.0026 0.0681 0.0787 0.1094 0.0157 0.1971 257: 1.3873 4.2017 0.0027 0.0681 0.0786 0.1095 0.0157 0.1971 258: 1.3873 4.2017 0.0027 0.0681 0.0786 0.1094 0.0157 0.1971 259: 1.3874 4.2017 0.0029 0.0681 0.0786 0.1094 0.0157 0.1971 260: 1.3874 4.2018 0.0031 0.0681 0.0785 0.1094 0.0156 0.1971 261: 1.3874 4.2018 0.0033 0.0681 0.0785 0.1095 0.0157 0.1971 262: 1.3874 4.2018 0.0034 0.0681 0.0786 0.1094 0.0158 0.1972 263: 1.3873 4.2018 0.0035 0.0681 0.0786 0.1094 0.0159 0.1972 264: 1.3874 4.2018 0.0035 0.0681 0.0786 0.1095 0.0159 0.1972 265: 1.3874 4.2018 0.0035 0.0681 0.0786 0.1095 0.0160 0.1972 266: 1.3873 4.2018 0.0035 0.0681 0.0786 0.1095 0.0160 0.1971 267: 1.3874 4.2019 0.0037 0.0681 0.0787 0.1096 0.0161 0.1971 268: 1.3874 4.2019 0.0037 0.0680 0.0787 0.1095 0.0161 0.1971 269: 1.3874 4.2019 0.0038 0.0680 0.0787 0.1095 0.0160 0.1971 270: 1.3874 4.2019 0.0038 0.0680 0.0787 0.1095 0.0160 0.1971 271: 1.3873 4.2019 0.0037 0.0680 0.0787 0.1095 0.0160 0.1971 272: 1.3873 4.2019 0.0035 0.0679 0.0787 0.1095 0.0160 0.1971 273: 1.3873 4.2018 0.0034 0.0679 0.0787 0.1094 0.0160 0.1971 274: 1.3873 4.2018 0.0033 0.0679 0.0787 0.1095 0.0159 0.1971 275: 1.3873 4.2018 0.0032 0.0679 0.0787 0.1095 0.0159 0.1971 276: 1.3874 4.2019 0.0032 0.0679 0.0788 0.1094 0.0159 0.1971 277: 1.3874 4.2019 0.0031 0.0679 0.0788 0.1094 0.0160 0.1971 278: 1.3874 4.2019 0.0031 0.0680 0.0788 0.1094 0.0160 0.1971 279: 1.3874 4.2020 0.0031 0.0680 0.0788 0.1095 0.0161 0.1971 280: 1.3874 4.2020 0.0033 0.0680 0.0788 0.1095 0.0161 0.1971 281: 1.3874 4.2020 0.0034 0.0680 0.0788 0.1095 0.0162 0.1971 282: 1.3874 4.2020 0.0033 0.0680 0.0788 0.1095 0.0162 0.1971 283: 1.3874 4.2020 0.0032 0.0680 0.0788 0.1095 0.0163 0.1971 284: 1.3874 4.2020 0.0033 0.0680 0.0788 0.1095 0.0163 0.1972 285: 1.3874 4.2019 0.0034 0.0680 0.0789 0.1096 0.0163 0.1971 286: 1.3874 4.2019 0.0035 0.0680 0.0789 0.1096 0.0163 0.1971 287: 1.3873 4.2019 0.0036 0.0680 0.0789 0.1097 0.0163 0.1971 288: 1.3873 4.2019 0.0035 0.0680 0.0789 0.1098 0.0163 0.1971 289: 1.3873 4.2018 0.0034 0.0680 0.0789 0.1097 0.0163 0.1971 290: 1.3873 4.2019 0.0032 0.0681 0.0789 0.1097 0.0163 0.1971 291: 1.3873 4.2019 0.0032 0.0681 0.0790 0.1096 0.0163 0.1972 292: 1.3873 4.2019 0.0032 0.0681 0.0790 0.1096 0.0163 0.1972 293: 1.3873 4.2018 0.0032 0.0681 0.0789 0.1097 0.0162 0.1972 294: 1.3873 4.2018 0.0032 0.0681 0.0789 0.1097 0.0162 0.1972 295: 1.3873 4.2018 0.0031 0.0681 0.0789 0.1096 0.0162 0.1972 296: 1.3873 4.2018 0.0031 0.0681 0.0789 0.1096 0.0162 0.1972 297: 1.3873 4.2018 0.0030 0.0680 0.0789 0.1097 0.0162 0.1972 298: 1.3873 4.2017 0.0030 0.0680 0.0789 0.1098 0.0162 0.1972 299: 1.3873 4.2017 0.0029 0.0680 0.0789 0.1098 0.0162 0.1972 300: 1.3872 4.2016 0.0028 0.0680 0.0789 0.1098 0.0163 0.1972 301: 1.3872 4.2016 0.0028 0.0680 0.0789 0.1098 0.0163 0.1972 302: 1.3872 4.2016 0.0027 0.0680 0.0789 0.1098 0.0164 0.1972 303: 1.3872 4.2016 0.0027 0.0680 0.0789 0.1098 0.0164 0.1972 304: 1.3872 4.2016 0.0027 0.0680 0.0789 0.1098 0.0164 0.1972 305: 1.3872 4.2016 0.0027 0.0680 0.0789 0.1098 0.0163 0.1972 306: 1.3872 4.2016 0.0027 0.0680 0.0789 0.1098 0.0162 0.1972 307: 1.3872 4.2016 0.0029 0.0680 0.0789 0.1099 0.0162 0.1972 308: 1.3872 4.2016 0.0031 0.0680 0.0789 0.1099 0.0161 0.1972 309: 1.3872 4.2016 0.0031 0.0680 0.0789 0.1099 0.0161 0.1972 310: 1.3872 4.2016 0.0031 0.0680 0.0789 0.1098 0.0161 0.1972 311: 1.3872 4.2016 0.0031 0.0680 0.0788 0.1098 0.0161 0.1972 312: 1.3872 4.2016 0.0031 0.0681 0.0788 0.1098 0.0160 0.1972 313: 1.3872 4.2016 0.0032 0.0681 0.0788 0.1098 0.0160 0.1972 314: 1.3872 4.2016 0.0032 0.0681 0.0788 0.1098 0.0159 0.1972 315: 1.3873 4.2017 0.0033 0.0681 0.0788 0.1098 0.0159 0.1972 316: 1.3873 4.2018 0.0034 0.0681 0.0788 0.1098 0.0159 0.1972 317: 1.3873 4.2018 0.0034 0.0681 0.0788 0.1098 0.0159 0.1972 318: 1.3874 4.2018 0.0035 0.0681 0.0788 0.1098 0.0159 0.1972 319: 1.3874 4.2019 0.0035 0.0681 0.0788 0.1097 0.0159 0.1972 320: 1.3874 4.2019 0.0035 0.0681 0.0788 0.1097 0.0159 0.1972 321: 1.3874 4.2019 0.0036 0.0681 0.0788 0.1097 0.0159 0.1972 322: 1.3874 4.2020 0.0036 0.0681 0.0788 0.1098 0.0158 0.1972 323: 1.3874 4.2020 0.0036 0.0681 0.0788 0.1097 0.0158 0.1972 324: 1.3875 4.2021 0.0037 0.0681 0.0788 0.1098 0.0157 0.1972 325: 1.3875 4.2021 0.0038 0.0681 0.0788 0.1098 0.0158 0.1972 326: 1.3875 4.2021 0.0038 0.0681 0.0788 0.1098 0.0158 0.1972 327: 1.3875 4.2021 0.0039 0.0681 0.0788 0.1098 0.0158 0.1972 328: 1.3875 4.2022 0.0039 0.0681 0.0788 0.1098 0.0158 0.1972 329: 1.3876 4.2022 0.0040 0.0681 0.0788 0.1098 0.0159 0.1972 330: 1.3876 4.2023 0.0041 0.0682 0.0788 0.1098 0.0159 0.1972 331: 1.3876 4.2023 0.0042 0.0682 0.0788 0.1098 0.0159 0.1972 332: 1.3876 4.2023 0.0043 0.0682 0.0789 0.1098 0.0159 0.1972 333: 1.3877 4.2024 0.0043 0.0682 0.0789 0.1098 0.0159 0.1972 334: 1.3877 4.2024 0.0044 0.0682 0.0789 0.1098 0.0159 0.1972 335: 1.3877 4.2024 0.0044 0.0682 0.0789 0.1099 0.0159 0.1972 336: 1.3877 4.2024 0.0044 0.0682 0.0788 0.1099 0.0159 0.1972 337: 1.3877 4.2024 0.0044 0.0682 0.0788 0.1099 0.0159 0.1972 338: 1.3878 4.2025 0.0045 0.0682 0.0788 0.1099 0.0158 0.1972 339: 1.3878 4.2025 0.0045 0.0682 0.0788 0.1099 0.0158 0.1972 340: 1.3878 4.2025 0.0044 0.0682 0.0788 0.1099 0.0158 0.1972 341: 1.3878 4.2025 0.0044 0.0683 0.0788 0.1099 0.0157 0.1972 342: 1.3878 4.2025 0.0044 0.0683 0.0788 0.1099 0.0157 0.1972 343: 1.3878 4.2025 0.0044 0.0683 0.0788 0.1098 0.0157 0.1972 344: 1.3878 4.2025 0.0044 0.0683 0.0788 0.1098 0.0157 0.1972 345: 1.3878 4.2025 0.0044 0.0683 0.0788 0.1098 0.0157 0.1972 346: 1.3878 4.2025 0.0044 0.0683 0.0788 0.1098 0.0157 0.1972 347: 1.3878 4.2025 0.0043 0.0683 0.0787 0.1098 0.0158 0.1972 348: 1.3878 4.2025 0.0043 0.0683 0.0787 0.1098 0.0158 0.1972 349: 1.3878 4.2025 0.0043 0.0683 0.0787 0.1098 0.0158 0.1972 350: 1.3878 4.2025 0.0043 0.0683 0.0787 0.1098 0.0158 0.1972 351: 1.3878 4.2025 0.0044 0.0683 0.0787 0.1099 0.0157 0.1972 352: 1.3878 4.2025 0.0044 0.0683 0.0787 0.1098 0.0157 0.1972 353: 1.3878 4.2025 0.0044 0.0683 0.0787 0.1098 0.0157 0.1972 354: 1.3878 4.2025 0.0044 0.0683 0.0787 0.1099 0.0157 0.1972 355: 1.3878 4.2026 0.0045 0.0683 0.0787 0.1099 0.0158 0.1972 356: 1.3878 4.2025 0.0045 0.0683 0.0787 0.1099 0.0158 0.1972 357: 1.3878 4.2026 0.0045 0.0683 0.0787 0.1100 0.0158 0.1972 358: 1.3878 4.2026 0.0044 0.0683 0.0787 0.1100 0.0158 0.1972 359: 1.3878 4.2026 0.0045 0.0683 0.0787 0.1100 0.0158 0.1972 360: 1.3878 4.2026 0.0044 0.0683 0.0787 0.1100 0.0158 0.1972 361: 1.3879 4.2026 0.0044 0.0683 0.0787 0.1100 0.0158 0.1972 362: 1.3879 4.2026 0.0044 0.0683 0.0787 0.1100 0.0158 0.1972 363: 1.3879 4.2026 0.0044 0.0683 0.0787 0.1101 0.0158 0.1972 364: 1.3879 4.2026 0.0044 0.0683 0.0787 0.1101 0.0158 0.1972 365: 1.3879 4.2026 0.0044 0.0683 0.0787 0.1101 0.0158 0.1972 366: 1.3879 4.2026 0.0045 0.0683 0.0787 0.1101 0.0158 0.1972 367: 1.3879 4.2027 0.0045 0.0683 0.0787 0.1102 0.0157 0.1972 368: 1.3879 4.2027 0.0046 0.0683 0.0787 0.1102 0.0157 0.1972 369: 1.3879 4.2027 0.0046 0.0683 0.0788 0.1103 0.0157 0.1972 370: 1.3879 4.2027 0.0046 0.0683 0.0788 0.1103 0.0157 0.1972 371: 1.3879 4.2026 0.0046 0.0683 0.0788 0.1103 0.0157 0.1972 372: 1.3879 4.2026 0.0046 0.0683 0.0788 0.1103 0.0157 0.1972 373: 1.3879 4.2026 0.0046 0.0683 0.0788 0.1103 0.0157 0.1972 374: 1.3879 4.2026 0.0047 0.0683 0.0788 0.1103 0.0157 0.1972 375: 1.3879 4.2026 0.0047 0.0683 0.0788 0.1103 0.0158 0.1972 376: 1.3879 4.2026 0.0047 0.0684 0.0788 0.1103 0.0158 0.1972 377: 1.3879 4.2026 0.0047 0.0684 0.0788 0.1103 0.0158 0.1972 378: 1.3879 4.2026 0.0047 0.0684 0.0788 0.1103 0.0158 0.1972 379: 1.3879 4.2026 0.0047 0.0684 0.0788 0.1103 0.0158 0.1972 380: 1.3879 4.2026 0.0047 0.0684 0.0788 0.1103 0.0158 0.1972 381: 1.3879 4.2026 0.0047 0.0683 0.0788 0.1103 0.0158 0.1972 382: 1.3879 4.2026 0.0047 0.0683 0.0788 0.1103 0.0158 0.1972 383: 1.3879 4.2026 0.0047 0.0683 0.0788 0.1103 0.0158 0.1972 384: 1.3879 4.2026 0.0047 0.0683 0.0788 0.1102 0.0158 0.1972 385: 1.3879 4.2026 0.0047 0.0683 0.0788 0.1103 0.0158 0.1972 386: 1.3879 4.2026 0.0047 0.0683 0.0788 0.1103 0.0158 0.1972 387: 1.3879 4.2026 0.0047 0.0683 0.0788 0.1102 0.0158 0.1972 388: 1.3879 4.2026 0.0047 0.0683 0.0787 0.1102 0.0159 0.1972 389: 1.3879 4.2026 0.0047 0.0683 0.0787 0.1102 0.0158 0.1972 390: 1.3879 4.2026 0.0046 0.0683 0.0787 0.1102 0.0159 0.1972 391: 1.3879 4.2026 0.0047 0.0683 0.0787 0.1102 0.0159 0.1972 392: 1.3879 4.2026 0.0047 0.0683 0.0787 0.1102 0.0159 0.1972 393: 1.3879 4.2026 0.0047 0.0683 0.0787 0.1101 0.0159 0.1972 394: 1.3879 4.2026 0.0048 0.0683 0.0787 0.1101 0.0159 0.1972 395: 1.3879 4.2027 0.0048 0.0683 0.0787 0.1102 0.0158 0.1972 396: 1.3879 4.2027 0.0048 0.0683 0.0787 0.1102 0.0158 0.1972 397: 1.3880 4.2027 0.0048 0.0683 0.0787 0.1102 0.0158 0.1972 398: 1.3880 4.2027 0.0048 0.0683 0.0787 0.1101 0.0157 0.1972 399: 1.3880 4.2027 0.0047 0.0683 0.0787 0.1101 0.0157 0.1973 400: 1.3880 4.2027 0.0047 0.0683 0.0787 0.1101 0.0157 0.1973 401: 1.3880 4.2027 0.0047 0.0683 0.0787 0.1101 0.0157 0.1973 402: 1.3879 4.2027 0.0047 0.0683 0.0787 0.1101 0.0157 0.1973 403: 1.3879 4.2027 0.0046 0.0683 0.0787 0.1101 0.0157 0.1973 404: 1.3879 4.2027 0.0046 0.0683 0.0787 0.1101 0.0157 0.1973 405: 1.3879 4.2026 0.0045 0.0683 0.0787 0.1101 0.0157 0.1973 406: 1.3879 4.2026 0.0045 0.0683 0.0787 0.1101 0.0157 0.1973 407: 1.3880 4.2027 0.0045 0.0683 0.0787 0.1101 0.0157 0.1973 408: 1.3880 4.2027 0.0046 0.0683 0.0787 0.1102 0.0157 0.1973 409: 1.3880 4.2027 0.0046 0.0683 0.0787 0.1102 0.0157 0.1973 410: 1.3880 4.2027 0.0046 0.0683 0.0787 0.1102 0.0157 0.1973 411: 1.3880 4.2027 0.0046 0.0683 0.0787 0.1102 0.0157 0.1973 412: 1.3880 4.2026 0.0046 0.0683 0.0787 0.1101 0.0157 0.1973 413: 1.3880 4.2026 0.0045 0.0683 0.0787 0.1101 0.0157 0.1973 414: 1.3880 4.2026 0.0045 0.0682 0.0787 0.1101 0.0157 0.1973 415: 1.3879 4.2026 0.0046 0.0682 0.0787 0.1101 0.0157 0.1972 416: 1.3879 4.2026 0.0046 0.0682 0.0788 0.1101 0.0157 0.1972 417: 1.3879 4.2026 0.0045 0.0682 0.0788 0.1101 0.0156 0.1972 418: 1.3879 4.2026 0.0045 0.0682 0.0788 0.1101 0.0156 0.1972 419: 1.3879 4.2026 0.0045 0.0682 0.0788 0.1101 0.0156 0.1972 420: 1.3879 4.2026 0.0045 0.0682 0.0788 0.1101 0.0156 0.1972 421: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1101 0.0156 0.1972 422: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1100 0.0156 0.1972 423: 1.3879 4.2026 0.0046 0.0682 0.0787 0.1100 0.0156 0.1972 424: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1100 0.0155 0.1972 425: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1100 0.0155 0.1972 426: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1100 0.0155 0.1972 427: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1100 0.0155 0.1972 428: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1100 0.0155 0.1972 429: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1100 0.0155 0.1972 430: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1100 0.0155 0.1972 431: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1100 0.0155 0.1972 432: 1.3879 4.2026 0.0045 0.0682 0.0787 0.1100 0.0155 0.1972 433: 1.3879 4.2026 0.0046 0.0682 0.0787 0.1101 0.0155 0.1972 434: 1.3879 4.2026 0.0046 0.0682 0.0787 0.1101 0.0155 0.1972 435: 1.3879 4.2026 0.0045 0.0682 0.0786 0.1101 0.0155 0.1972 436: 1.3879 4.2026 0.0045 0.0682 0.0786 0.1101 0.0155 0.1972 437: 1.3879 4.2026 0.0045 0.0682 0.0786 0.1101 0.0155 0.1972 438: 1.3879 4.2026 0.0044 0.0682 0.0786 0.1102 0.0155 0.1972 439: 1.3879 4.2025 0.0044 0.0682 0.0786 0.1102 0.0156 0.1972 440: 1.3879 4.2025 0.0044 0.0682 0.0786 0.1102 0.0156 0.1972 441: 1.3879 4.2025 0.0044 0.0682 0.0786 0.1102 0.0156 0.1972 442: 1.3879 4.2025 0.0044 0.0682 0.0786 0.1102 0.0157 0.1972 443: 1.3879 4.2025 0.0044 0.0682 0.0786 0.1102 0.0156 0.1972 444: 1.3878 4.2025 0.0044 0.0682 0.0786 0.1102 0.0156 0.1972 445: 1.3878 4.2025 0.0043 0.0682 0.0786 0.1102 0.0156 0.1972 446: 1.3878 4.2024 0.0043 0.0682 0.0786 0.1102 0.0156 0.1972 447: 1.3878 4.2024 0.0043 0.0682 0.0786 0.1102 0.0156 0.1973 448: 1.3878 4.2024 0.0042 0.0682 0.0786 0.1102 0.0155 0.1973 449: 1.3878 4.2024 0.0042 0.0682 0.0786 0.1101 0.0155 0.1973 450: 1.3878 4.2024 0.0042 0.0682 0.0786 0.1101 0.0155 0.1973 451: 1.3878 4.2024 0.0042 0.0682 0.0786 0.1101 0.0154 0.1973 452: 1.3878 4.2024 0.0042 0.0682 0.0786 0.1101 0.0154 0.1973 453: 1.3878 4.2024 0.0041 0.0682 0.0786 0.1101 0.0154 0.1973 454: 1.3878 4.2024 0.0041 0.0682 0.0786 0.1101 0.0154 0.1973 455: 1.3877 4.2024 0.0041 0.0682 0.0786 0.1101 0.0154 0.1973 456: 1.3877 4.2024 0.0041 0.0681 0.0786 0.1101 0.0154 0.1973 457: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1101 0.0154 0.1973 458: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1101 0.0155 0.1973 459: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1101 0.0155 0.1973 460: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1101 0.0155 0.1973 461: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1101 0.0155 0.1973 462: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1101 0.0155 0.1973 463: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1101 0.0155 0.1973 464: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1101 0.0155 0.1973 465: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1101 0.0154 0.1973 466: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1101 0.0154 0.1973 467: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1101 0.0154 0.1973 468: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1101 0.0154 0.1973 469: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1101 0.0154 0.1973 470: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1101 0.0153 0.1973 471: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1102 0.0153 0.1973 472: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1102 0.0153 0.1973 473: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1102 0.0153 0.1973 474: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1102 0.0152 0.1973 475: 1.3877 4.2023 0.0039 0.0681 0.0785 0.1103 0.0152 0.1973 476: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1103 0.0152 0.1973 477: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1103 0.0152 0.1973 478: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1103 0.0152 0.1973 479: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1103 0.0152 0.1973 480: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1104 0.0152 0.1973 481: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1104 0.0151 0.1973 482: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1104 0.0151 0.1973 483: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1104 0.0151 0.1973 484: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1104 0.0151 0.1973 485: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1104 0.0151 0.1973 486: 1.3877 4.2024 0.0041 0.0681 0.0785 0.1104 0.0151 0.1973 487: 1.3877 4.2024 0.0041 0.0681 0.0785 0.1104 0.0151 0.1973 488: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1104 0.0150 0.1973 489: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1104 0.0150 0.1973 490: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1104 0.0150 0.1973 491: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1105 0.0150 0.1973 492: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1105 0.0150 0.1973 493: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1105 0.0150 0.1973 494: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1105 0.0150 0.1973 495: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1105 0.0150 0.1973 496: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1105 0.0150 0.1973 497: 1.3877 4.2023 0.0040 0.0681 0.0785 0.1105 0.0150 0.1973 498: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1105 0.0149 0.1973 499: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1105 0.0149 0.1973 500: 1.3877 4.2023 0.0041 0.0681 0.0785 0.1105 0.0149 0.1973 Using sympy via SnakeCharmR

    Calculate ETA-based prediction and error derivatives:

    Calculate Jacobian.....................done. Calculate sensitivities....... done.

    Calculate d(f)/d(eta)

    ...

    done

    ...

    done

    The model-based sensitivities have been calculated. It will be cached for future runs. Diagonal form: sqrt [,1] [,2] [,3] [1,] 1 1 1 [2,] 1 1 1 [3,] 1 1 1 Calculate symbolic inverse...done Calculate symbolic determinant of inverse...done Calculate d(Omega)/d(Est) and d(Omega^-1)/d(Est)... .0 .....5.....10.....15.....20.....25.....30.....35.....40.....45.....50 .....55.....60.....65.....70.....75.....80.....85.....90.....95.....100 .....105.....110.....115.....120.....125done. Calculating Table Variables... done Warning message: In collectWarnings(do.call(focei.fit.data.frame0, call, envir = parent.frame(1))) : NaNs produced fit nlmixr SAEM fit (ODE)

 OBJF      AIC      BIC Log-likelihood

397880.5 397902.5 397977.8 -198940.2

Time (sec; $time): saem setup FOCEi Evaulate covariance table elapsed 840.989 45.825 0.74 0 8.983

Parameters ($par.fixed): est exp.est. se(est) label lCL 1.387717811 4.005698 0.02393613 log Cl (L/hr) lV 4.202336577 66.842331 0.02589833 log Vc (L) lKA 0.004093322 1.004102 0.03180794 log Ka (1/hr) err_prop 0.197292888 1.218101 NA
err_add 0.014925479 1.015037 NA

Omega ($omgea): eta_CL eta_V eta_KA eta_CL 0.06808708 -1.705250e-03 0.2801659568 eta_V -0.00170525 1.257657e-05 0.0007365823 eta_KA 0.28016596 7.365823e-04 0.1104928545

Fit Data (object is a modified data.frame): ID TIME DV IPRED PRED IRES RES IWRES WRES [1,] 1 0.25 204.8 184.9374 197.7254 19.86260 7.074638 0.5443770 0.1036144 [2,] 1 0.50 310.6 322.1122 348.6160 -11.51225 -38.015979 -0.1811513 -0.3517509 [3,] 1 0.75 389.2 423.2265 463.1128 -34.02649 -73.912789 -0.4075049 -0.5722546 CWRES CPRED CRES eta_CL eta_V eta_KA [1,] 0.1163493 197.4409 7.359107 0.1037011 0.162759 0.1093467 [2,] -0.3815712 348.0177 -37.417733 0.1037011 0.162759 0.1093467 [3,] -0.6331755 462.1144 -72.914408 0.1037011 0.162759 0.1093467

sessionInfo() R version 3.4.2 (2017-09-28) Platform: x86_64-apple-darwin15.6.0 (64-bit) Running under: OS X El Capitan 10.11

Matrix products: default BLAS: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRblas.0.dylib LAPACK: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRlapack.dylib

locale: [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages: [1] stats graphics grDevices utils datasets methods base

other attached packages: [1] nlmixr_0.9.0-1 RxODE_0.6-0 nlme_3.1-131

loaded via a namespace (and not attached): [1] rex_1.1.1 Rcpp_0.12.13 magrittr_1.5 munsell_0.4.3
[5] colorspace_1.3-2 lattice_0.20-35 brew_1.0-6 rlang_0.1.2
[9] dparser_0.1.7 stringr_1.2.0 plyr_1.8.4 tools_3.4.2
[13] lbfgs_1.2.1 parallel_3.4.2 grid_3.4.2 gtable_0.2.0
[17] R.oo_1.21.0 SnakeCharmR_1.0.7 lazyeval_0.2.0 digest_0.6.12
[21] tibble_1.3.4 ggplot2_2.2.1 R.utils_2.5.0 inline_0.3.14
[25] memoise_1.1.0 stringi_1.1.5 compiler_3.4.2 R.methodsS3_1.7.1 [29] scales_0.5.0 jsonlite_1.5

R version 3.4.2 (2017-09-28) -- "Short Summer" Copyright (C) 2017 The R Foundation for Statistical Computing Platform: x86_64-apple-darwin15.6.0 (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details.

Natural language support but running in an English locale

R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R.

library(nlmixr) Loading required package: nlme Loading required package: RxODE

d <- Oral_1CPT d <- d[,names(d) != "SS"] d <- nmDataConvert(d) Warning message: In nmDataConvert(d) : EVID=2 is dropped from RxODE/nlmixr datasets.

f <- function() {

  • ini({
  • lCL <- log(5) # log Cl (L/hr)
  • lV <- log(90) # log Vc (L)
  • lKA <- log(1) # log Ka (1/hr)
  • err_prop <- c(0, 0.2, 1)
  • err_add <- c(0, 0.1, 1)
  • eta_CL + eta_V + eta_KA ~ c(0.1,
  • 0.05, 0.1,
  • 0.01, 0.01, 0.1)
  • })
  • model({
  • CL <- exp(lCL + eta_CL)
  • V <- exp(lV + eta_V)
  • KA <- exp(lKA + eta_KA)
  • d/dt(A1) = -KA*A1;
  • d/dt(A2) = KAA1 - (CL/V)A2;
  • conc = A2 / V;
  • conc ~ prop(err_prop) + add(err_add)
  • })
  • } fit <- nlmixr(object = f,
  • data = d,
  • est = "saem") Compiling RxODE differential equations...done. clang++ -I/Library/Frameworks/R.framework/Resources/include -DNDEBUG -I/usr/local/include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/nlmixr//include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/StanHeaders//include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/Rcpp//include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/RcppArmadillo//include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/RcppEigen//include -I/Library/Frameworks/R.framework/Versions/3.4/Resources/library/BH//include -fPIC -Wall -g -O2 -c saem1f6cb7a097.cpp -o saem1f6cb7a097.o clang++ -dynamiclib -Wl,-headerpad_max_install_names -undefined dynamic_lookup -single_module -multiply_defined suppress -L/Library/Frameworks/R.framework/Resources/lib -L/usr/local/lib -o saem1f6cb7a097.so saem1f6cb7a097.o /Users/annie/rxc5a52e2bc2a21ffa162d021e50bcc8fb.so -L/Library/Frameworks/R.framework/Resources/lib -lRblas -L/Library/Frameworks/R.framework/Resources/lib -lRlapack -L/usr/local/gfortran/lib/gcc/x86_64-apple-darwin15/6.1.0 -L/usr/local/gfortran/lib -lgfortran -lquadmath -lm -F/Library/Frameworks/R.framework/.. -framework R -Wl,-framework -Wl,CoreFoundation done. 1: 1.8507 4.6023 -0.0351 0.0950 0.0950 0.0950 50.7610 0.5372 2: 1.7246 4.4862 0.0231 0.0902 0.0902 0.0902 2.2590 0.6800 3: 1.6653 4.4888 0.0276 0.0857 0.0857 0.0857 8.7817 0.4630 4: 1.5875 4.4159 0.0632 0.0815 0.0815 0.0815 1.1870 0.4494 5: 1.5422 4.3758 0.0720 0.0774 0.0774 0.0816 1.9575 0.3509 6: 1.5017 4.3334 0.0854 0.0735 0.0735 0.0776 0.3135 0.3021 7: 1.4663 4.3025 0.0816 0.0775 0.0738 0.0786 0.3719 0.2651 8: 1.4432 4.2801 0.0843 0.0754 0.0733 0.0791 0.0925 0.2426 9: 1.4339 4.2700 0.0878 0.0762 0.0730 0.0816 0.0778 0.2229 10: 1.4252 4.2578 0.0766 0.0755 0.0716 0.0855 0.0293 0.2159 11: 1.4188 4.2499 0.0780 0.0756 0.0716 0.0891 0.0209 0.2111 12: 1.4135 4.2450 0.0668 0.0750 0.0718 0.0878 0.0252 0.2070 13: 1.4118 4.2389 0.0617 0.0750 0.0735 0.0914 0.0268 0.2062 14: 1.4094 4.2360 0.0449 0.0740 0.0736 0.0909 0.0266 0.2041 15: 1.4068 4.2311 0.0332 0.0719 0.0742 0.0916 0.0314 0.2030 16: 1.4037 4.2282 0.0270 0.0721 0.0745 0.0939 0.0273 0.2025 17: 1.4022 4.2264 0.0318 0.0722 0.0737 0.0971 0.0319 0.2017 18: 1.4009 4.2239 0.0292 0.0720 0.0742 0.1049 0.0259 0.2023 19: 1.4000 4.2226 0.0294 0.0723 0.0753 0.1024 0.0335 0.2012 20: 1.3996 4.2184 0.0273 0.0726 0.0751 0.1012 0.0271 0.2012 21: 1.3965 4.2136 0.0292 0.0723 0.0751 0.1000 0.0237 0.2015 22: 1.3940 4.2098 0.0222 0.0716 0.0754 0.1032 0.0216 0.2001 23: 1.3933 4.2090 0.0222 0.0715 0.0764 0.1097 0.0187 0.1995 24: 1.3917 4.2083 0.0276 0.0709 0.0776 0.1100 0.0212 0.1990 25: 1.3926 4.2081 0.0194 0.0706 0.0785 0.1090 0.0129 0.1982 26: 1.3915 4.2065 0.0167 0.0705 0.0790 0.1079 0.0132 0.1992 27: 1.3925 4.2077 0.0092 0.0697 0.0805 0.1054 0.0148 0.1984 28: 1.3933 4.2085 0.0175 0.0699 0.0794 0.1123 0.0146 0.1990 29: 1.3927 4.2096 0.0179 0.0697 0.0793 0.1119 0.0117 0.1987 30: 1.3913 4.2081 0.0117 0.0708 0.0777 0.1162 0.0179 0.1975 31: 1.3903 4.2049 0.0072 0.0705 0.0768 0.1152 0.0263 0.1978 32: 1.3894 4.2022 0.0045 0.0708 0.0780 0.1225 0.0211 0.1972 33: 1.3883 4.2006 0.0078 0.0703 0.0757 0.1209 0.0211 0.1972 34: 1.3890 4.2045 0.0115 0.0701 0.0773 0.1161 0.0264 0.1971 35: 1.3875 4.2050 0.0129 0.0692 0.0780 0.1157 0.0181 0.1966 36: 1.3897 4.2055 0.0134 0.0689 0.0777 0.1174 0.0138 0.1972 37: 1.3905 4.2077 0.0180 0.0692 0.0774 0.1193 0.0217 0.1973 38: 1.3894 4.2079 0.0254 0.0684 0.0773 0.1214 0.0165 0.1971 39: 1.3892 4.2062 0.0138 0.0685 0.0781 0.1198 0.0183 0.1967 40: 1.3903 4.2092 0.0131 0.0682 0.0801 0.1148 0.0134 0.1974 41: 1.3895 4.2067 0.0018 0.0677 0.0781 0.1122 0.0115 0.1976 42: 1.3906 4.2067 0.0093 0.0675 0.0785 0.1119 0.0148 0.1975 43: 1.3916 4.2050 -0.0048 0.0673 0.0778 0.1103 0.0154 0.1982 44: 1.3910 4.2028 0.0001 0.0673 0.0767 0.1160 0.0174 0.1985 45: 1.3910e+00 4.2044e+00 4.9817e-05 6.7497e-02 7.7368e-02 1.1117e-01 1.7408e-02 1.9854e-01 46: 1.3904 4.2024 0.0083 0.0677 0.0761 0.1122 0.0126 0.1988 47: 1.3898 4.2038 0.0122 0.0678 0.0764 0.1122 0.0125 0.1980 48: 1.3892e+00 4.2038e+00 6.5524e-05 6.7618e-02 7.4854e-02 1.0828e-01 1.5718e-02 1.9763e-01 49: 1.3896 4.2058 -0.0004 0.0683 0.0755 0.1102 0.0104 0.1985 50: 1.3894 4.2023 0.0019 0.0685 0.0753 0.1082 0.0211 0.1979 51: 1.3893 4.2040 0.0085 0.0682 0.0751 0.1094 0.0154 0.1989 52: 1.3913 4.2047 0.0038 0.0684 0.0750 0.1132 0.0169 0.1980 53: 1.3908 4.2061 0.0077 0.0694 0.0757 0.1144 0.0120 0.1991 54: 1.3914 4.2086 0.0156 0.0700 0.0778 0.1138 0.0165 0.1982 55: 1.3911 4.2067 0.0174 0.0695 0.0773 0.1137 0.0233 0.1981 56: 1.3910 4.2051 0.0094 0.0691 0.0772 0.1131 0.0233 0.1981 57: 1.3910 4.2078 0.0079 0.0698 0.0786 0.1124 0.0299 0.1970 58: 1.3899 4.2076 0.0114 0.0708 0.0782 0.1123 0.0174 0.1980 59: 1.3886 4.2048 0.0102 0.0703 0.0783 0.1107 0.0194 0.1979 60: 1.3901 4.2044 0.0167 0.0702 0.0761 0.1100 0.0160 0.1966 61: 1.3900 4.2055 0.0055 0.0702 0.0765 0.1110 0.0200 0.1972 62: 1.3911 4.2042 0.0026 0.0699 0.0760 0.1168 0.0180 0.1974 63: 1.3896 4.2045 0.0122 0.0696 0.0761 0.1118 0.0163 0.1974 64: 1.3895 4.2039 0.0165 0.0699 0.0771 0.1062 0.0120 0.1977 65: 1.3890 4.2034 0.0165 0.0700 0.0759 0.1090 0.0151 0.1977 66: 1.3888 4.2016 0.0180 0.0702 0.0755 0.1106 0.0116 0.1974 67: 1.3882 4.2050 0.0143 0.0698 0.0760 0.1102 0.0149 0.1972 68: 1.3882 4.2051 0.0137 0.0705 0.0775 0.1047 0.0149 0.1972 69: 1.3905 4.2053 0.0072 0.0701 0.0769 0.1099 0.0149 0.1972 70: 1.3902 4.2051 0.0058 0.0697 0.0764 0.1108 0.0176 0.1980 71: 1.3909 4.2067 0.0135 0.0695 0.0762 0.1131 0.0116 0.1983 72: 1.3908 4.2065 0.0054 0.0690 0.0760 0.1116 0.0135 0.1978 73: 1.3896 4.2057 0.0176 0.0689 0.0776 0.1113 0.0116 0.1983 74: 1.3898 4.2060 0.0170 0.0694 0.0779 0.1134 0.0130 0.1976 75: 1.3888 4.2057 0.0187 0.0693 0.0782 0.1149 0.0125 0.1987 76: 1.3883 4.2047 0.0091 0.0706 0.0782 0.1167 0.0152 0.1979 77: 1.3880 4.2035 0.0161 0.0711 0.0796 0.1188 0.0159 0.1974 78: 1.3895 4.2033 0.0081 0.0699 0.0782 0.1129 0.0189 0.1973 79: 1.3894 4.2033 0.0070 0.0702 0.0777 0.1169 0.0151 0.1977 80: 1.3887 4.2025 0.0087 0.0703 0.0768 0.1125 0.0170 0.1980 81: 1.3882 4.2046 0.0055 0.0696 0.0785 0.1108 0.0182 0.1975 82: 1.3890 4.2060 0.0054 0.0695 0.0786 0.1081 0.0182 0.1975 83: 1.3902 4.2070 0.0089 0.0691 0.0784 0.1093 0.0152 0.1975 84: 1.3907 4.2047 0.0062 0.0690 0.0783 0.1099 0.0182 0.1982 85: 1.3903 4.2061 0.0106 0.0690 0.0795 0.1126 0.0189 0.1978 86: 1.3895 4.2040 0.0026 0.0682 0.0798 0.1085 0.0173 0.1976 87: 1.3888 4.2046 0.0045 0.0689 0.0799 0.1118 0.0173 0.1976 88: 1.3895 4.2041 0.0213 0.0690 0.0802 0.1190 0.0195 0.1972 89: 1.3894 4.2066 0.0179 0.0684 0.0807 0.1159 0.0185 0.1975 90: 1.3895 4.2081 0.0144 0.0683 0.0815 0.1126 0.0168 0.1980 91: 1.3899 4.2073 0.0201 0.0684 0.0796 0.1154 0.0171 0.1976 92: 1.3878 4.2053 0.0156 0.0689 0.0801 0.1207 0.0171 0.1976 93: 1.3880 4.2043 0.0070 0.0685 0.0785 0.1185 0.0142 0.1969 94: 1.3887 4.2051 0.0053 0.0678 0.0772 0.1256 0.0124 0.1965 95: 1.3882 4.2054 0.0046 0.0683 0.0784 0.1212 0.0062 0.1974 96: 1.3888 4.2043 0.0060 0.0676 0.0767 0.1154 0.0095 0.1977 97: 1.3877 4.2026 0.0063 0.0688 0.0763 0.1111 0.0131 0.1984 98: 1.3877 4.2032 0.0061 0.0687 0.0760 0.1055 0.0091 0.1967 99: 1.3868 4.2024 0.0036 0.0689 0.0767 0.1103 0.0089 0.1970 100: 1.3870 4.2057 0.0118 0.0688 0.0798 0.1104 0.0138 0.1964 101: 1.3870 4.2049 0.0052 0.0677 0.0790 0.1097 0.0169 0.1961 102: 1.3885 4.2058 0.0051 0.0681 0.0812 0.1124 0.0114 0.1968 103: 1.3889 4.2035 0.0146 0.0671 0.0794 0.1088 0.0209 0.1970 104: 1.3882 4.2059 0.0138 0.0682 0.0811 0.1033 0.0133 0.1973 105: 1.3894 4.2063 0.0129 0.0684 0.0801 0.0997 0.0165 0.1973 106: 1.3890 4.2047 0.0029 0.0679 0.0782 0.0982 0.0181 0.1982 107: 1.3894 4.2058 -0.0009 0.0676 0.0778 0.1000 0.0189 0.1968 108: 1.3883 4.2026 0.0052 0.0682 0.0772 0.1042 0.0202 0.1979 109: 1.3879 4.2030 0.0066 0.0684 0.0785 0.1115 0.0202 0.1979 110: 1.3896 4.2049 0.0031 0.0679 0.0780 0.1072 0.0241 0.1974 111: 1.3894 4.2046 0.0051 0.0675 0.0784 0.1116 0.0184 0.1984 112: 1.3889 4.2039 0.0046 0.0678 0.0780 0.1121 0.0184 0.1984 113: 1.3888 4.2036 0.0036 0.0678 0.0795 0.1134 0.0122 0.1973 114: 1.3873 4.2038 0.0070 0.0680 0.0803 0.1153 0.0208 0.1974 115: 1.3866 4.2020 0.0154 0.0679 0.0791 0.1147 0.0155 0.1967 116: 1.3869 4.2010 0.0013 0.0685 0.0791 0.1143 0.0162 0.1976 117: 1.3872 4.2035 0.0074 0.0687 0.0799 0.1117 0.0172 0.1972 118: 1.3867 4.2044 0.0148 0.0685 0.0804 0.1094 0.0155 0.1971 119: 1.3877 4.2035 0.0175 0.0689 0.0802 0.1067 0.0156 0.1968 120: 1.3884 4.2043 0.0111 0.0681 0.0789 0.1068 0.0180 0.1969 121: 1.3890 4.2043 0.0124 0.0679 0.0802 0.1112 0.0149 0.1968 122: 1.3864 4.1993 0.0109 0.0690 0.0796 0.1164 0.0122 0.1975 123: 1.3874 4.2012 0.0059 0.0692 0.0817 0.1106 0.0161 0.1973 124: 1.3862 4.2005 -0.0050 0.0691 0.0814 0.1078 0.0149 0.1969 125: 1.3860 4.2004 0.0038 0.0684 0.0809 0.1099 0.0217 0.1964 126: 1.3862 4.2014 -0.0009 0.0685 0.0793 0.1044 0.0130 0.1963 127: 1.3863 4.1996 0.0056 0.0683 0.0790 0.1113 0.0109 0.1973 128: 1.3868 4.2001 -0.0019 0.0687 0.0777 0.1139 0.0122 0.1971 129: 1.3865 4.2024 0.0045 0.0688 0.0767 0.1120 0.0092 0.1970 130: 1.3880 4.2037 0.0126 0.0683 0.0765 0.1064 0.0123 0.1967 131: 1.3899 4.2052 0.0178 0.0681 0.0765 0.1125 0.0080 0.1979 132: 1.3895 4.2026 0.0097 0.0678 0.0749 0.1107 0.0067 0.1974 133: 1.3888 4.2039 0.0066 0.0677 0.0762 0.1078 0.0097 0.1974 134: 1.3902 4.2037 0.0073 0.0672 0.0741 0.1113 0.0104 0.1977 135: 1.3886 4.2045 0.0105 0.0681 0.0754 0.1152 0.0064 0.1981 136: 1.3884 4.2049 0.0079 0.0678 0.0761 0.1168 0.0109 0.1964 137: 1.3879 4.2042 0.0094 0.0673 0.0761 0.1224 0.0141 0.1968 138: 1.3898 4.2052 0.0161 0.0676 0.0745 0.1185 0.0079 0.1972 139: 1.3895 4.2074 0.0180 0.0675 0.0772 0.1131 0.0116 0.1973 140: 1.3890 4.2070 0.0128 0.0679 0.0771 0.1152 0.0124 0.1978 141: 1.3918 4.2087 0.0200 0.0676 0.0773 0.1228 0.0151 0.1969 142: 1.3895 4.2062 0.0171 0.0683 0.0770 0.1167 0.0151 0.1969 143: 1.3889 4.2060 0.0230 0.0688 0.0781 0.1203 0.0122 0.1967 144: 1.3903 4.2077 0.0205 0.0676 0.0775 0.1222 0.0122 0.1967 145: 1.3888 4.2062 0.0156 0.0684 0.0777 0.1161 0.0122 0.1967 146: 1.3896 4.2059 0.0174 0.0689 0.0767 0.1145 0.0106 0.1960 147: 1.3918 4.2064 0.0176 0.0679 0.0760 0.1177 0.0087 0.1963 148: 1.3912 4.2072 0.0161 0.0681 0.0769 0.1165 0.0112 0.1973 149: 1.3906 4.2058 0.0129 0.0677 0.0769 0.1145 0.0102 0.1980 150: 1.3894 4.2057 0.0176 0.0672 0.0765 0.1088 0.0102 0.1980 151: 1.3895 4.2062 0.0101 0.0669 0.0783 0.1056 0.0140 0.1971 152: 1.3889 4.2050 0.0177 0.0672 0.0785 0.1104 0.0094 0.1974 153: 1.3902 4.2071 0.0196 0.0672 0.0762 0.1117 0.0122 0.1966 154: 1.3902 4.2074 0.0141 0.0671 0.0775 0.1097 0.0189 0.1967 155: 1.3909 4.2073 0.0051 0.0669 0.0786 0.1118 0.0162 0.1966 156: 1.3895 4.2070 0.0121 0.0672 0.0768 0.1163 0.0152 0.1972 157: 1.3906 4.2076 0.0053 0.0676 0.0772 0.1128 0.0080 0.1969 158: 1.3907 4.2077 0.0112 0.0678 0.0798 0.1103 0.0116 0.1974 159: 1.3906 4.2072 0.0109 0.0680 0.0775 0.1109 0.0116 0.1974 160: 1.3894 4.2069 0.0155 0.0680 0.0775 0.1136 0.0151 0.1972 161: 1.3899 4.2047 0.0058 0.0680 0.0786 0.1137 0.0201 0.1968 162: 1.3891 4.2061 0.0069 0.0684 0.0792 0.1135 0.0093 0.1983 163: 1.3904 4.2064 0.0083 0.0680 0.0773 0.1108 0.0104 0.1976 164: 1.3894 4.2060 0.0159 0.0683 0.0769 0.1082 0.0129 0.1980 165: 1.3888 4.2047 0.0126 0.0688 0.0777 0.1117 0.0133 0.1971 166: 1.3890 4.2036 0.0102 0.0690 0.0767 0.1142 0.0133 0.1971 167: 1.3897 4.2045 0.0134 0.0691 0.0763 0.1250 0.0136 0.1975 168: 1.3885 4.2040 0.0129 0.0688 0.0752 0.1224 0.0113 0.1972 169: 1.3885 4.2039 0.0102 0.0681 0.0772 0.1174 0.0143 0.1972 170: 1.3896 4.2057 0.0047 0.0679 0.0784 0.1162 0.0114 0.1973 171: 1.3911 4.2086 0.0114 0.0677 0.0779 0.1147 0.0134 0.1982 172: 1.3913 4.2073 0.0124 0.0672 0.0776 0.1108 0.0123 0.1979 173: 1.3908 4.2090 0.0171 0.0671 0.0778 0.1103 0.0155 0.1978 174: 1.3912 4.2088 0.0075 0.0678 0.0781 0.1125 0.0155 0.1978 175: 1.3899 4.2067 0.0115 0.0686 0.0784 0.1143 0.0150 0.1982 176: 1.3895 4.2074 0.0098 0.0687 0.0762 0.1086 0.0134 0.1975 177: 1.3901 4.2058 0.0068 0.0687 0.0763 0.1101 0.0106 0.1981 178: 1.3897 4.2063 0.0100 0.0696 0.0764 0.1116 0.0084 0.1983 179: 1.3894 4.2051 0.0098 0.0694 0.0772 0.1118 0.0050 0.1986 180: 1.3899 4.2073 0.0055 0.0687 0.0776 0.1132 0.0061 0.1982 181: 1.3897 4.2056 0.0070 0.0687 0.0772 0.1165 0.0101 0.1976 182: 1.3897 4.2076 0.0058 0.0692 0.0778 0.1097 0.0055 0.1982 183: 1.3892 4.2072 0.0106 0.0694 0.0781 0.1152 0.0103 0.1971 184: 1.3907 4.2077 0.0068 0.0692 0.0766 0.1171 0.0103 0.1971 185: 1.3884 4.2022 0.0033 0.0692 0.0763 0.1088 0.0103 0.1971 186: 1.3905 4.2050 -0.0006 0.0687 0.0771 0.1103 0.0136 0.1975 187: 1.3902 4.2032 0.0010 0.0692 0.0770 0.1088 0.0112 0.1976 188: 1.3909 4.2055 0.0082 0.0684 0.0784 0.1098 0.0197 0.1983 189: 1.3902 4.2066 0.0100 0.0682 0.0779 0.1100 0.0205 0.1979 190: 1.3896 4.2061 0.0097 0.0681 0.0781 0.1192 0.0205 0.1979 191: 1.3886 4.2029 0.0105 0.0686 0.0772 0.1164 0.0147 0.1977 192: 1.3879 4.2034 0.0104 0.0679 0.0779 0.1180 0.0197 0.1970 193: 1.3881 4.2016 0.0138 0.0680 0.0769 0.1222 0.0197 0.1970 194: 1.3887 4.2018 0.0095 0.0683 0.0768 0.1228 0.0136 0.1970 195: 1.3896 4.2016 0.0106 0.0681 0.0773 0.1245 0.0105 0.1970 196: 1.3886 4.2025 0.0077 0.0682 0.0784 0.1217 0.0165 0.1975 197: 1.3870 4.2012 0.0026 0.0689 0.0789 0.1154 0.0144 0.1974 198: 1.3854 4.2027 0.0018 0.0693 0.0781 0.1156 0.0173 0.1975 199: 1.3869 4.2035 0.0118 0.0685 0.0789 0.1155 0.0150 0.1973 200: 1.3876 4.2042 0.0056 0.0680 0.0796 0.1142 0.0125 0.1966 201: 1.3873 4.2039 0.0092 0.0681 0.0798 0.1139 0.0108 0.1969 202: 1.3873 4.2034 0.0085 0.0681 0.0798 0.1130 0.0117 0.1969 203: 1.3869 4.2029 0.0051 0.0683 0.0799 0.1113 0.0117 0.1970 204: 1.3868 4.2027 0.0045 0.0683 0.0801 0.1104 0.0136 0.1970 205: 1.3868 4.2020 0.0037 0.0682 0.0798 0.1099 0.0141 0.1970 206: 1.3867 4.2016 0.0041 0.0682 0.0797 0.1095 0.0145 0.1970 207: 1.3867 4.2016 0.0038 0.0681 0.0797 0.1085 0.0146 0.1969 208: 1.3867 4.2019 0.0044 0.0681 0.0798 0.1091 0.0142 0.1970 209: 1.3868 4.2019 0.0042 0.0681 0.0797 0.1094 0.0143 0.1970 210: 1.3867 4.2020 0.0043 0.0681 0.079
mattfidler commented 6 years ago

Thanks @ronkeizer ; I appreciate any bug report.

I did reproduce your issue. I have posted a fix to RxODE that works for me; You could test it by:

install_github("nlmixrdevelopment/RxODE");

Let me know if it works for you.

ronkeizer commented 6 years ago

hi @mattfidler, re-installed RxODE (after you merged the fix from pow_di_why into master), but still see the same issue... On Linux the issue is not present. FYI: for me this is not a burning issue, this was just a test case and can workaround by switching OS for now. Thanks for the help.