summarise_dunnett {AgroR} | R Documentation |
Utils: Dunnett's Test Summary
Description
Performs a summary in table form from a list of Dunnett's test outputs
Usage
summarise_dunnett(variable, colnames = NA, info = "sig")
Arguments
variable |
List object Dunnett test |
colnames |
Names of column |
info |
Information of table |
Value
A summary table from Dunnett's test is returned
Examples
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))
[Package AgroR version 1.3.6 Index]