RE: [NMusers] ERROR NUMBER OF BASIC PK PARAMETERS EXCEEDS VALUE OF NPARAM IN $MODEL

2019-07-31 Thread Paul Hutson
> From: Leonid Gibiansky > Sent: Tuesday, July 30, 2019 11:53 PM > To: Paul Hutson ; 'nmusers' > > Subject: Re: [NMusers] ERROR NUMBER OF BASIC PK PARAMETERS EXCEEDS > VALUE OF NPARAM IN $MODEL > > Not sure why would we need NPARAM there, is it necessary? I

Re: [NMusers] ERROR NUMBER OF BASIC PK PARAMETERS EXCEEDS VALUE OF NPARAM IN $MODEL

2019-07-31 Thread Alison Boeckmann
the $DES > block as a parameter. > Take care. > Paul > > Paul Hutson, PharmD, BCOP > Professor > UWisc School of Pharmacy > T: 608.263.2496 > F: 608.265.5421 > > -Original Message- > From: Leonid Gibiansky > Sent: Tuesday, July 30, 2019 11:53 PM

RE: [NMusers] ERROR NUMBER OF BASIC PK PARAMETERS EXCEEDS VALUE OF NPARAM IN $MODEL

2019-07-31 Thread Paul Hutson
NUMBER OF BASIC PK PARAMETERS EXCEEDS VALUE OF NPARAM IN $MODEL Not sure why would we need NPARAM there, is it necessary? I think one can skip it. On the different topic, expression for IWRES is not correct: IWRES=IRES/(IPRED * EPS(1) + EPS(2)) This is the version that should be used: IWRES

Re: [NMusers] ERROR NUMBER OF BASIC PK PARAMETERS EXCEEDS VALUE OF NPARAM IN $MODEL

2019-07-30 Thread Leonid Gibiansky
Not sure why would we need NPARAM there, is it necessary? I think one can skip it. On the different topic, expression for IWRES is not correct: IWRES=IRES/(IPRED * EPS(1) + EPS(2)) This is the version that should be used: IWRES=IRES/SQRT(IPRED**2 * SIGMA(1,1) + SIGMA(2,2)) Also it is more tr