search for: permdist

Displaying 1 result from an estimated 1 matches for "permdist".

Did you mean: permdisp
2008 Feb 25
0
how to find the significance F for one-way ANOVA
...y A<-(1,2), B(3, 4, 5), C<-(6, 7, 8, 9), What I want to find is just the F-value for one-way ANOVA. This is my R code and result when I am just use A and B > library(BHH2) > > A <- c(1,2) > B <- c(3,4,5) > > permtest(A,B) N t.obs t-Dist:P(>t) PermDist:P(>t) F.obs 10.0000000 -3.0000000 0.9711656 0.9000000 0.5000000 F-Dist:P(>F) PermDist:P(>F) 0.5527864 0.5000000 > And you see it gives me a lot of information, and I just know N=10 is just the number of possible permutations. I do not know whe...