Utils: Dunnett's Test Summary
Performs a summary in table form from a list of Dunnett's test outputs
summarise_dunnett(variable, colnames = NA, info = "sig")
variable
: List object Dunnett testcolnames
: Names of columninfo
: Information of tableA summary table from Dunnett's test is returned
library(AgroR) data("pomegranate") a=with(pomegranate,dunnett(trat=trat,resp=WL,control="T1")) b=with(pomegranate,dunnett(trat=trat,resp=SS,control="T1")) c=with(pomegranate,dunnett(trat=trat,resp=AT,control="T1")) d=with(pomegranate,dunnett(trat=trat,resp=ratio,control="T1")) summarise_dunnett(list(a,b,c,d))
Useful links