View source: R/summarise_dunnett.R
summarise_dunnett | R Documentation |
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 test |
colnames |
Names of column |
info |
Information of table |
A 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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.