[NMusers] ACoP 2024 Programming Proposal Submission Site is Open

2024-02-02 Thread Emmanuel Chigutsa
[https://files.constantcontact.com/257844f0801/5ed380a9-814a-4e76-bd56-325f179a1d60.png?rdr=true]   ACoP 2024 Scientific Programming Proposals The ACoP 2024 Scientific Programming Proposal Submission Site is now open! The Scientific Programming Committee is seeking proposals that are innovat

[NMusers] RE: Pharmacometrics job opportunity at Eli Lilly and Company

2020-08-06 Thread Emmanuel Chigutsa
experience from industry, regulatory, consulting or academia with exposure to industry is advantageous, we are also looking for hardworking emerging professionals. https://careers.lilly.com/job/indianapolis/research-scientist-pharmacometrics/410/16868457 Best regards, Mannie Emmanuel Chigutsa, PhD

[NMusers] Pharmacometrics job opportunity at Eli Lilly and Company

2020-05-19 Thread Emmanuel Chigutsa
, regulatory, consulting or academia with exposure to industry is advantageous, we are also looking for hardworking emerging professionals. https://careers.lilly.com/job/indianapolis/research-scientist-pharmacometrics/410/16216149 Best regards, Mannie Emmanuel Chigutsa, PhD Group Leader

[NMusers] RE: WCOP preconference workshop on PKPD modeling of large molecules - Sunday 5 April 2020 - Cape Town

2020-02-24 Thread Emmanuel Chigutsa
-biologics-and-biosimilars-Eli-Lilly-1.pdf WCOP2020 workshop registration link: https://allevents.eventsair.com/wcop2020/workshop If you have any questions please send an email to echigu...@yahoo.com<mailto:echigu...@yahoo.com> Mannie Emmanuel Chigutsa, PhD Team Leader, Pharmacom

[NMusers] WCOP preconference workshop on PKPD modeling of large molecules - Sunday 5 April 2020 - Cape Town

2020-01-07 Thread Emmanuel Chigutsa
-and-biosimilars-Eli-Lilly-1.pdf WCOP2020 workshops link: https://wcop2020.org/workshops-and-courses/ If you have any questions please send an email to chigutsa_emman...@lilly.com<mailto:chigutsa_emman...@lilly.com> Mannie Emmanuel Chigutsa, PhD Team Leader, Pharmacometrics Global PK/

Re: [NMusers] How to format output table as purely comma-separated file

2019-03-14 Thread Emmanuel Chigutsa
Hi Sebastien, Try the following example code, with the relevant pieces in red: $TABLE ID TIME CMT IPRED FORMAT=, FILE=mytab1.csv NOPRINT ONEHEADER Mannie On Wednesday, March 13, 2019, 9:14:21 AM EDT, Sebastien Bihorel wrote: Hi, I was wondering if there is a way to create "pure" csv

[NMusers] FW: Open PK/PD Project Leader Position at Lilly

2018-05-31 Thread Emmanuel Chigutsa
Eli Lilly and Company’s Global PK/PD and Pharmacometrics Department is looking for enthusiastic new or experienced scientists. Are you ready to join a dedicated team at Lilly working to improve lives of patients? The scientists in the department of PK/PD & Pharmacometrics are involved in resea

Re: [NMusers] Generating TAD with ADDL dosing format

2016-12-20 Thread Emmanuel Chigutsa
Hi Camila, Alternative (simpler) coding to get TAD would be as follows: $PK (NONEVENT)IF(AMT.GT.0) TDOS=TIMETAD=TIME-TDOS The trick here is to add NONEVENT after $PK which tells NONMEM to make calls to $PK even for 'hidden' dose times, such as ADDLs, therefore TDOS is updated appropriately. Manni

Re: [NMusers] RE: Link different thetas to same omega using mu referencing

2016-04-13 Thread Emmanuel Chigutsa
trying to use different etas for the different thetas as you had was that only the variance (omega) was constrained to be same, but not necessarily the same eta for each ID. Mannie From: "Leander, Jacob" To: Emmanuel Chigutsa ; "rupert.aus...@btconnect.com"

Re: [NMusers] RE: Link different thetas to same omega using mu referencing

2016-04-13 Thread Emmanuel Chigutsa
I think the following code should work: IF(CAT.EQ.1) CLCOV = THETA(1)IF(CAT.EQ.2) CLCOV = THETA(2)IF(CAT.EQ.3) CLCOV = THETA(3)MU_1 = THETA(4) CL = EXP(MU_1+ETA(1))*(1+CLCOV) $OMEGA BLOCK(1) 0.1 Mannie From: Rupert Austin To: "'Sadler, Brian'" ; nmusers@globomaxnm.com Sent: Wednesday,

Re: [NMusers] $INPUT: NO. OF DATA ITEMS EXCEEDS PD.

2015-12-31 Thread Emmanuel Chigutsa
Hi Thorsten, You can change the default limits for various things using the $SIZES option. To change the limit of columns, add the following in the beginning of your control stream (even before $PROBLEM)$SIZES PD=-100 This tells NONMEM that your dataset has 100 columns or less (change the value

Re: [NMusers] Estimation of Intake Time

2015-06-18 Thread Emmanuel Chigutsa
Hi Andrej, You can try something along the following lines:-subtract 12 hours from the time of all doses in the dataset (create new time column)-add a fixed ALAG of 12 hours and some variability on it. You could also fix the variability to a big number. You can also test covariates (patient subg

Re: [NMusers] SAEM and IMP

2014-05-15 Thread Emmanuel Chigutsa
  Hi Pavel I have experienced a similar problem. In my case, the following code for IMP after SAEM (using NM7.3) greatly reduced the Monte Carlo OFV noise from variations of about +/- 60 points to variations of +/- 6 points (though still not good enough for covariate testing): $EST METHOD=IMP LAPL

Re: [NMusers] Time-to-event analysis with $DES

2011-03-23 Thread Emmanuel Chigutsa
Hi Hyewon My 2 cents of advice: 1. Note that you need to estimate the baseline hazard. You can then add AUC as a covariate on the baseline hazard, or perhaps the Weibull shape factor. 2. Because of my limited experience, I am not sure of the type of survival distribution you are trying to model, bu

Re: AW: [NMusers] Problem to implement a change in transfer rate after event during measurement period

2010-07-28 Thread Emmanuel Chigutsa
Hi Andreas In this case, the code I am familiar with under $PK is: MTIME(1)=THETA(..) TK120=THETA(..) ; rate constant until MTIME TK121=THETA(..) ; rate constant after MTIME K12=TK120*(1-MPAST(1)) + TK121*MPAST(1) ; MPAST(1) is 0 until MTIME(1) whereupon it becomes 1 I am not sure what MTDIFF do

Re: [NMusers] Problem to implement a change in transfer rate after event during measurement period

2010-07-28 Thread Emmanuel Chigutsa
Dear Andreas MTIME is used for estimation of an model event time. Hence you use it if you do not know the time, but it appears you do know the time. If the time is the same for all individuals, and I would simply use the following code: IF(TIME.LE. xxx) THEN K12=THETA(..) ELSE K12=THETA(..) ENDIF

Re: [NMusers] EHC modelling

2010-01-27 Thread Emmanuel Chigutsa
In my experience, putting MTDIFF=1 made no difference. I have limited experience with EHC myself, so that's my 2 cents worth of advice. Emmanuel Emmanuel Chigutsa (BPharm. Hons) Research Fellow, Pharmacometrics Group Division of Clinical Pharmacology, University of Cape Town K-45 Old Mai

Re: [NMusers] questions about IOV

2009-11-11 Thread Emmanuel Chigutsa
in population pharmacokinetic analyses. Journal of pharmacokinetics and biopharmaceutics. 1993. vol 21, No. 6. Regards, Emmanuel Emmanuel Chigutsa (BPharm. Hons) Research Fellow, Pharmacometrics Group Division of Clinical Pharmacology, University of Cape Town K-45 Old Main Building, Groote

Re: [NMusers] change calculation of WRES?

2009-08-25 Thread Emmanuel Chigutsa
, Sheiner. 1995 "Three new residual error models for population PK/PD analyses" Journal of pharmacokinetics and biopharmaceutics, vol 23, no.6. Emmanuel Emmanuel Chigutsa (BPharm. Hons) Research Fellow, Pharmacometrics Group Division of Clinical Pharmacology, University of Cape Town K-4