if I am missing anything from my code.
coag<- matrix( scan("//Samba3/nair/R/blood.dat", sep=","), 24, 3, byrow=TRUE)
colnames(coag) <- c("time","diet","order")
coag <- as.data.frame(coag)
oneway.test(time ~ diet, data=coag, var.eq=TRUE)
coag.mod <- aov(time ~ diet, data=coag)
options(scipen=5)
options(digits=5)
TukeyHSD( coag.mod )
I get the following error when I run the above code
Read 72 items
Error in rep.int(n, length(means)) : Unimplemented feature in rep
In addition: Warning message:
non-factors ignored: diet in: replications(paste("~", paste(names(tables), collapse = "+")),
The data is here ..
62,1,20 60,1,2 63,1,11 59,1,10 63,2,12 67,2,9 71,2,15 64,2,14 65,2,4 66,2,8 68,3,16 66,3,7 71,3,1 67,3,17 68,3,13 68,3,21 56,4,23 62,4,3 60,4,6 61,4,18 63,4,22 64,4,19 63,4,5 59,4,24
Thanks ../ Murli
______________________________________________ [EMAIL PROTECTED] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
