Proc MIXED CV%-intra, CV%-inter [General Sta­tis­tics]

posted by d_labes  – Berlin, Germany, 2009-10-07 15:05 (6100 d 23:01 ago) – Posting: # 4315
Views: 40,675

Dear Vitamin K, (what a nick name :-) )

❝ First of all, I set in the proc mixed to get residuals in a data set. Then I calculate MSE from the residuals.

❝ Then I applied the formula: CV=100*sqrt(exp(MSE)-1), where I get a result, but I do not know it is the right method to get the real CV?


I'm not Helmut but I hope I can answer your question to some extent.
Sorry, but I do not understand what you do with Proc Mixed from your description :confused:.

Here is the SAS code I would employ for a classical 2x2 cross over (use search in this forum to find a lot of discussions!):

Proc MIXED data=yours;
class subject treatment period sequence;

model logPK=treatment period sequence;
random subject(sequence);
Estimate 'T-R' treatment -1 1/Cl alpha=0.1;

Run;


logPK is the log-transformed parameter under analysis (AUC, Cmax or so).
The estimate statement assumes that treatment is coded with T and R.

Le's use Helmuts data with 24 subjects found here.

Among the lengthy output you will find covariance parameter estimates
                 The Mixed Procedure
[...]
           Covariance Parameter Estimates

            Cov Parm              Estimate

            Subject(Sequence)      0.1002
            Residual               0.04102

[...]

Subject(Sequence) is the inter-subject variability s2inter and residual the within-subject (or intra-subject) variability s2within.
Convert them to CV with the formula CV=100*sqrt(exp(s2inter or within)-1) with the corresponding variance. But cave! This only applies if your PK parameter under analysis is log-transformed.

BTW: Why do you use Proc MIXED here?

Regards,

Detlew

Complete thread:

UA Flag
Activity
 Admin contact
23,655 posts in 4,993 threads, 1,570 registered users;
131 visitors (0 registered, 131 guests [including 12 identified bots]).
Forum time: 14:06 CEST (Europe/Vienna)

Science is simply common sense at its best that is,
rigidly accurate in observation, and
merciless to fallacy in logic.    Thomas Henry Huxley

The Bioequivalence and Bioavailability Forum is hosted by
BEBAC Ing. Helmut Schütz
HTML5