How to compare statistical significance between four subsets of dataframe

Comparing roots, shoots and calluses for statistical significance between all four medium types, have subsetted by medium

dat<-read.csv("~/RECAP/Book5.csv",header=T, stringsAsFactors = T)
dat$Medium<-as.factor(dat$Medium) # makes medium a catergorical dataset
M1<-subset(dat,dat$Medium=="M1") # subset into medium types
M2<- subset(dat,dat$Medium=='M2')
M3<- subset(dat,dat$Medium=='M3')
M4<- subset(dat,dat$Medium=='M4')

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.