Maura ☆ 2010-09-02 19:09 (5359 d 04:59 ago) Posting: # 5876 Views: 7,059 |
|
I'm trying to get the same results with SAS, for the WinNonlin output, for a cross-over design 3x6 (Chow & Liu, page 321, PURICH's data), without success. Someone tell me how to get the same results with SAS code? Following the data, the SAS program and output, and the WinNonlin output. Subj Per SEQ Droga asc Carry lnasc WinNonlin output:
Partial Tests of Model Effects SAS Program:
PROC GLM DATA=purich; SAS Output: The GLM Procedure Mainly the period effect is very different! Thanks and sorry about my English!! Edit: Category changed. Please don't use tabulators in you post (see here on how to use BBCodes) - use the Preview before posting. [Helmut] |
d_labes ★★★ Berlin, Germany, 2010-09-03 10:58 (5358 d 13:11 ago) @ Maura Posting: # 5879 Views: 5,774 |
|
Dear Maura, I don't own WNL therefore I can't verify your WNL results. But from the form of output I guess that you have done a mixed model analysis in WNL? Then the appropriate SAS code will be:
Proc mixed data=maura; This gives among the output: ... This is very close to your results with Proc GLM, as I had expected. Thus I can't figure out why WNL gives distinct F-tests. Check your model specifications and data thoroughly. Maybe that WNL partial F-tests do not correspond to SAS type III tests? Any of the WNL owners out there with an opinion? ❝ Thanks and sorry about my English!! (emphasis by me) Welcome to the club. ![]() — Regards, Detlew |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2010-09-03 13:13 (5358 d 10:55 ago) @ d_labes Posting: # 5880 Views: 6,111 |
|
Dear D. Labes & Maura, ❝ This gives among the [SAS Proc mixed] output: ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ ❝ This is very close to your results with Proc GLM, as I had expected. ❝ ❝ Thus I can't figure out why WNL gives distinct F-tests. ❝ Check your model specifications and data thoroughly. OK, here my results (Phoenix/WinNonlin 6.1): Model Specification and User Settings ❝ Maybe that WNL partial F-tests do not correspond to SAS type III tests? They are almost (!) the same. ![]() ❝ Any of the WNL owners out there with an opinion? I would say wrong coding. The model should be specified with: Fixed Effects Sequence+Droga+Period+Carry Variance Structure / Random 1 Subject(Sequence) Type Variance Components Chow/Liu reported carryover effects at p=0.32 and further results (3rd ed. 2009, Tables 10.3.15/16, p322): Carryover R T S I followed Maura's coding here; R=solution (R), T=domestic tablet (T1), S=European tablet (T2). According to footnote (a): Calculations were based upon [...] an estimate of solution formulation mean which is 5.97 (??) in the presence of carryover effects and is 6.01 in the absence of carryover effects. I got: Carryover R T S No idea whether the LSM of the reference in Chow/Liu contains another typo (5.67 ↔ 5.97) - and which value they have actually used in calculating the 90% CI. @Maura: Where did you get the coding of carryover from? — Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
d_labes ★★★ Berlin, Germany, 2010-09-03 14:10 (5358 d 09:58 ago) @ Helmut Posting: # 5881 Views: 5,769 |
|
Dear Helmut! ❝ OK, here my results (Phoenix/WinNonlin 6.1): ❝ ... ❝ They are almost (!) the same. Very fine ![]() ❝ Chow/Liu reported carryover effects at p=0.32 and further results ❝ (3rd ed. 2009, Tables 10.3.15/16, p322): ❝ ❝ ❝ ❝ From the values and a short look into the book it seems they have analyzed the AUC values un-transformed! Not a very good idea with respect to nearly all guidances around the world ![]() @Maura: I agree with Helmut. There is a coding error in your carry-over factor. In the first period there is no carry-over possible. BTW: I would not take a model with carry-over if no very strong arguments are present that such an effect could have occured. An sufficient wash-out period should have avoided that. If not the simple first order carry-over model is not an efficient tool to deal with. See Stephen Senn "Cross-over Trials in Clinical Research" Chapter 10 Second edition Wiley, Chichester, 2002 — Regards, Detlew |
Maura ☆ 2010-09-03 16:07 (5358 d 08:01 ago) @ d_labes Posting: # 5883 Views: 5,804 |
|
Dear all, First I am very thank you for help!! Where did I get the coding of carryover from? This was removed from the forum itself. I found the encoding of an example of a book (C5300.zip): /***SAS code for examples in Chapter 4 of ***/ In example 4.5 the data is arranged in the same way. I create the column “Carry” based on this example. Those results from WNL was a friend who showed me, because I don't have the software. The results achieved through the SAS I get well. I am very happy to have achieved these results with the help of you, but what I really need is to estimate the effect of "carryover" with one degree of freedom (ANOVA in Chow & Liu page 366 - second edition), when this same model is used to drug interaction (with x alone), and so I would not know how to create the column "Carry". Recalling that in Brazil, ANVISA is criticizing this design, so we are trying to estimate the carryover effect and determining its significance, trying to justify the design. ANVISA wants it done a study for bioequivalence between "A + I" and "A" and another for "A + I" and "I". Does anyone know how to do this parameterization??! Thank you all. Edit: Full quote removed. Please delete anything from the text of the original poster which is not necessary in understanding your answer; see also this post! [Helmut] |