Hi everyone, data tab1;
input gr $ experiment var1;
datalines;
A 1 0.58
A 2 0.74
A 3 1.17
B 1 0.73
B 2 0.75
B 3 1.52
C 1 1.09
C 2 1.06
C 3 1.60
;
run;
proc npar1way data=tab1 wilcoxon dscf;
class gr;
var var1;
run; I have 3 subjects (A, B and C). For each subject, i repeat an experient 3 times. So I have 3 quantitave measurements for each subject. Looking at the data, I realize that in each experiment (1, 2 and 3), A < B < C. But for each experiment I don't have the same "order of magnitude" for my quantitative variable, because of manipulation errors. I wanted to do a kruskall-wallis because of the small sample, to test my quantitative variable between my 3 groups. But I don't know how to take into account the fact that there is inter-experimental variability because one and only one CLASS variable must be specified ? And is the kruslll-wallis test the best solution ? Thank you.
... View more