Degrees of freedom 3-period full replicate [RSABE / ABEL]
Dear Detlew,
I didn't try the code, so it was only what I expect in result (my mistake - I didn't write that for 2x2x3 replicate design I thought to filter data to only those used in GLM).
For 3-period 2-sequence replicate design with R replicated only in one sequence I would use code:
(Instead of the code which I copied from EMA Q&A in my previous post. I think there is no reason to have sequence in the GLModel for this case. And I am used to see degrees of freedom in ANOVA table which are giving us with real number of cases in evaluation: (number of subjects in evaluation-1) and (number of values in evaluation-1) in total)
In the example, due to we have 35 subjects in sequence with replicated R, I am expecting:
However, it does not affect anything important.
But if 72+1+34 results in total 108 (similar as 2+2=?, I think 5 is a very very good estimate, ... in accordance with the principles of doublethink "Sometimes they are five. Sometimes they are three. Sometimes they are all of them at once"), I have no power to know (same as Winston Smith has).
Btw. you are right about I did not include balance/unbalance option to table of dfs in my previous post (so it's true only for cases with no dropouts there).
I didn't try the code, so it was only what I expect in result (my mistake - I didn't write that for 2x2x3 replicate design I thought to filter data to only those used in GLM).
For 3-period 2-sequence replicate design with R replicated only in one sequence I would use code:
data var;
set replicate;
if (formulation='R' & sequence='TRR');
run;
proc glm data=var;
class subject period;
model logDATA= suject period;
run;
(Instead of the code which I copied from EMA Q&A in my previous post. I think there is no reason to have sequence in the GLModel for this case. And I am used to see degrees of freedom in ANOVA table which are giving us with real number of cases in evaluation: (number of subjects in evaluation-1) and (number of values in evaluation-1) in total)
In the example, due to we have 35 subjects in sequence with replicated R, I am expecting:
source df
period 1
subject 34
Error 34
Total 69
However, it does not affect anything important.
But if 72+1+34 results in total 108 (similar as 2+2=?, I think 5 is a very very good estimate, ... in accordance with the principles of doublethink "Sometimes they are five. Sometimes they are three. Sometimes they are all of them at once"), I have no power to know (same as Winston Smith has).
Btw. you are right about I did not include balance/unbalance option to table of dfs in my previous post (so it's true only for cases with no dropouts there).
Complete thread:
- 3 period full replicate Dr_Dan 2015-06-24 13:55 [RSABE / ABEL]
- 3 period full replicate ElMaestro 2015-06-24 14:11
- 3 period full replicate Helmut 2015-06-24 14:29
- 3 period full replicate d_labes 2015-06-24 14:38
- 3 period full replicate Dr_Dan 2015-06-24 16:43
- 3 period full replicate Helmut 2015-06-24 18:00
- 3 period full replicate ElMaestro 2015-06-24 18:11
- 3 period full replicate Helmut 2015-06-24 18:25
- 3 period full replicate d_labes 2015-06-25 08:52
- 3 period full replicate ElMaestro 2015-06-25 10:37
- 3 period full replicate d_labes 2015-06-25 08:52
- 3 period full replicate Helmut 2015-06-24 18:25
- 3 period full replicate ElMaestro 2015-06-24 18:11
- CVs (borderline OT) Helmut 2015-06-26 13:51
- CVs (R, T) from pooled CV d_labes 2015-07-02 09:09
- Answering an unasked question Helmut 2015-07-02 13:03
- Answer to an unasked answer d_labes 2015-07-02 14:21
- Bloody typo! Helmut 2015-07-02 14:33
- Answer to an unasked answer d_labes 2015-07-02 14:21
- Answering an unasked question Helmut 2015-07-02 13:03
- CVs (borderline OT) zizou 2015-07-05 19:20
- Degrees of freedom 3-period full replicate d_labes 2015-07-06 11:10
- Degrees of freedom 3-period full replicate ElMaestro 2015-07-06 11:59
- Degrees of freedom 3-period full replicate d_labes 2015-07-06 13:53
- Degrees of freedom 3-period full replicatezizou 2015-07-06 17:25
- Degrees of freedom 3-period full replicate ElMaestro 2015-07-06 11:59
- Degrees of freedom 3-period full replicate d_labes 2015-07-06 11:10
- CVs (R, T) from pooled CV d_labes 2015-07-02 09:09
- 3 period full replicate Helmut 2015-06-24 18:00
- 3 period full replicate Dr_Dan 2015-06-24 16:43
- The almighty oracle has spoken! Helmut 2015-07-23 23:54
- Almighty oracle's mysterious saying d_labes 2015-07-24 08:23