Displaying 2 results from an estimated 2 matches for "drgb".
Did you mean:
drb
2007 Aug 07
5
small sample techniques
If my sample size is small is there a particular switch option that I need to use with t.test so that it calculates the t ratio correctly?
Here is a dummy example?
รก =0.05
Mean pain reduction for A =27; B =31 and SD are SDA=9 SDB=12
drgA.p<-rnorm(5,27,9);
drgB.p<-rnorm(5,31,12)
t.test(drgA.p,drgB.p) # what do I need to give as additional parameter here?
I can do it manually but was looking for a switch option that I need to specify for t.test.
Thanks ../Murli
[[alternative HTML version deleted]]
2006 May 15
1
anova statistics in lmer
....11846 4.9653
Time -10.69835 2.42079 -4.4194
Drugb 3.38013 3.78372 0.8933
Drugp -3.77824 3.80176 -0.9938
Time:Drugb 3.51189 3.42352 1.0258
Time:Drugp 7.50131 3.42352 2.1911
Correlation of Fixed Effects:
(Intr) baseHR Time Drugb Drugp Tm:Drgb
baseHR -0.963
Time -0.090 0.000
Drugb -0.114 -0.078 0.237
Drugp -0.068 -0.125 0.236 0.504
Time:Drugb 0.064 0.000 -0.707 -0.335 -0.167
Time:Drugp 0.064 0.000 -0.707 -0.167 -0.333 0.500
> anova(fm1)
Analysis of Variance Table
Df Sum Sq Mean Sq
baseHR 1 74...