Learn R Programming

AgroR (version 1.3.6)

summarise_dunnett: 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")

Value

A summary table from Dunnett's test is returned

Arguments

variable

List object Dunnett test

colnames

Names of column

info

Information of table

Examples

Run this code
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))

Run the code above in your browser using DataLab