This is my R script where i am attempting to perform a wilcox test
" dat<-read.csv("204dfos.csv", header=TRUE)
dim(dat)
names(dat)
boxplot(TFfreq, Chronicfreq)
help("wilcox.test")
wilcox.test(dat$TFfreq, dat$Chronicfreq, paired = TRUE, alternative = “greater”) "
For the names (dat) part it...