Back to the Top
Hi:
In dose escalation studies we routinely include placebos for capturing safety info some groups analyze samples for concentrations (and they usally turn out to be zeros), during the dose proportionality evaluation do we include placebo as part of building models for evaluating dose proportionliy or we exclude them? Any advise is greatly appreciated.
Prasad NV Tata, Ph.D., FCP
2133 Seven Pines Drive
St. Louis, MO 63134
Back to the Top
The following message was posted to: PharmPK
The simple answer is no: placebo subjects should NOT be included into the evaluation of the dose proportionality. However, I've recently seen the case when you want to include these data. The drug was an endogenous substance, and placebo subjects provided the baseline level. Only the level above the endogenous level was dose proportional. If we would use only those on the drug, analysis would show nonlinear kinetics.
Leonid Gibiansky
www.quantpharm.com
Back to the Top
The following message was posted to: PharmPK
Leonid point can also apply when PD or biomarker measures are part of the protocol.
--dean
DeanKnuth.-a-.jasperclinic.biz
Back to the Top
The following message was posted to: PharmPK
Hi Prasad,
As far as my knowledge, we do not include placebos in dose proportionality analysis, as we normally do not include them in PK parameters calculations.
Thanks,
Soujanya
Back to the Top
Could anyone please supply me with the SAS code to analyse a parallel design, dose
proportionality study using the power model?
Thanks
brian
Back to the Top
Brian
For a parallel design with no repeated measurements just use linear
regression with Ln(AUC) as the dependent variable and Ln(dose) as the
independent variable.
proc reg;
model lnauc = lndose;
run; quit;
that should do it.
pete bonate
Back to the Top
The following message was posted to: PharmPK
Hi Brian,
So you mean code for BE analysis or for regular PK dose proportionality analysis? Let me
know.
Thanks,
Soujanya
Back to the Top
The following message was posted to: PharmPK
Peter
Thanks for this. I was hoping to go one stage further and calculate the
CIs. I have not kept up with the literature on the method but I believe
that there have been a few publications since the original two
Thanks
brian
Back to the Top
Change the code to this:
proc
reg; model y = x / clb alpha=0.10; run; quit;pete
Want to post a follow-up message on this topic?
If this link does not work with your browser send a follow-up message to PharmPK@boomer.org with "Dose proportionality" as the subject | Support PharmPK by using the |
Copyright 1995-2011 David W. A. Bourne (david@boomer.org)