Displaying 1 result from an estimated 1 matches for "n4374072".
Did you mean:
374072
2012 Feb 09
1
Tukey HSD
...OVA's
on every column in a data set (taking the first column as the definition of
the groups) and then spits out ONLY those results that were significant (p
<= whatever I want), with their respective plots and TukeyHSD results.
Sounds simple, right?
Data:
http://r.789695.n4.nabble.com/file/n4374072/test_text.txt test_text.txt
(see upload)
CODE: ( which occurs after TEST <- read.table("test_text.txt") )
i <- 2;
sink (file = "test_output.txt", append = FALSE)
mydf <- data.frame(TEST)
for (j in 1:ncol(mydf)-1) {
var1 <- mydf[,1]
var2 <- mydf[,i]
fm1 <...