Displaying 1 result from an estimated 1 matches for "qmaxfratio".
2011 Feb 16
1
Hartley's table
Hi,
I used the commands below to make Hartley's table,
but some values are NA.
require(SuppDists)
trat = seq(2, 15, 1)
gl = seq(2, 40, 1)
har = matrix(0, nr=length(gl), nc=length(trat))
for(i in 1:length(gl))
for(j in 1:length(trat))
har[i,j] <- qmaxFratio(.95, df=gl[i], k=trat[j])
rownames(har) <- gl
colnames(har) <- trat
head(har)
The output (head):
2 3 4 5 6
7
2 39.000000 87.488567 142.502114 202.378010 266.16460
333.18651
3 15.439182 27.758294 39.503063 50.885084 46.75297
72.83358
4 9....