Displaying 1 result from an estimated 1 matches for "normai".
Did you mean:
normal
2006 Oct 15
1
Mute script
Hi,
I tried to run the following script with R 2.4.0. The data stuff is commented
out because data are already in memory.
#db <- read.csv("normais.csv", sep=";", quote="", header=T)
sink("normais-chi.txt", append=T, type = "output", split=T)
#sink("normais-chi.txt", append=T)
table(db$agua, db$mBerg)
chisq.test(db$agua, db$mBerg, correct=F)
print(table(db$agua, db$mBerg))
print(chisq.tes...