kev ☆ 2010-03-25 17:35 (5523 d 19:40 ago) Posting: # 4972 Views: 4,513 |
|
Hello Helmut, Have a working SAS model for a replicate design, 2 treatments, 4 periods (each treatment is delivered twice). Now need to do followup analysis on the 4 individual treatment comparisons A1vA2 B1vB2 A1vB1 A2vB2 and am having a little bother programming the model. Can this even be done using proc mixed? Your input would be greatly appreciated. ![]() Edit: Category changed. [Helmut] |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2010-03-25 19:34 (5523 d 17:41 ago) @ kev Posting: # 4973 Views: 3,795 |
|
Dear key, nice that you accost me personally, but searching the forum you would have noticed that I don't have the slightest idea about ![]() ❝ Have a working SAS model for a replicate design, 2 treatments, 4 periods ❝ (each treatment is delivered twice). Define 'working model'. For ABE, IBE/PBE? ❝ Now need to do followup analysis on the 4 individual treatment ❝ comparisons ❝ A1vA2 ❝ B1vB2 ❝ A1vB1 ❝ A2vB2 ❝ ❝ and am having a little bother programming the model. I guess that your indices denote the order of administrations regardless the period? Let's have a look at FDA's baby:
P1 P2 P3 P4 So are you thinking about something like:
P1 P2 P3 P4 I don't think that your between occasion (within treatment) comparisons make sense - and I would say they are confounded with the period effect as well. Overall I'm not even sure whether I understand the rationale behind your four questions (especially the last two). In other words - what do you want to know? ❝ Can this even be done using proc mixed? I don't think so; I would say you are asking the wrong questions. But I'm only a statistical amateur and not gifted with ![]() — 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-03-26 09:48 (5523 d 03:27 ago) @ kev Posting: # 4974 Views: 3,646 |
|
Dear Kev, ❝ Have a working SAS model for a replicate design, 2 treatments, 4 periods ❝ (each treatment is delivered twice). ![]() ❝ Now need to do followup analysis on the 4 individual treatment ❝ comparisons ❝ A1vA2 ❝ B1vB2 ❝ A1vB1 ❝ A2vB2 Agree with Helmut. Seems to me not the right question within a replicate design. If you really like to consider the two replicates of Test (A) and Reference (B) as distinct (but why?) you don't have a replicate design anymore. It's then a 4-treatment-4-period-x-sequence design. Have a look into some textbook to find out: The model for the 4-treatment-4-period-whatever-sequence design is the same as for the usual 2x2 cross-over. If you prefer Proc Mixed over Proc GLM (but beware of regulatory 'constraints' if your evaluation is deemed as submission to the EMA, see here): Proc MIXED data=yourdata; But beware that you have coded your replicate treatments as A1,A2 and B1,B2 and your sequences accordingly. ![]() ![]() — Regards, Detlew |
kev ☆ 2010-03-26 11:42 (5523 d 01:32 ago) @ d_labes Posting: # 4976 Views: 3,652 |
|
Many thanks Gents. Both of you're replies seem to support my basic suspicion with the design theory here, that switching from a replicate design to a 4-way-crosssover to confirm treatment effects is a no-go. |