Learn R Programming

AgroR (version 1.3.6)

summarise_conj: Utils: Summary of Analysis of Variance and Test of Means for Joint analysis

Description

Summarizes the output of the analysis of variance and the multiple comparisons test for completely randomized (DIC) and randomized block (DBC) designs for Joint analysis with qualitative factor.

Usage

summarise_conj(analysis, design = "DBC", info = "p")

Arguments

analysis

List with the analysis outputs of the conjdic and conjdbc functions

design

Type of experimental project (DIC or DBC)

info

Analysis of variance information (can be "p", "f", "QM" or "SQ")

Author

Gabriel Danilo Shimizu

Examples

Run this code
library(AgroR)
data(mirtilo)
set.seed(1); resp1=rnorm(36,10,4)
set.seed(4); resp2=rnorm(36,10,3)
set.seed(8); resp3=rnorm(36,100,40)
type1=with(mirtilo, conjdbc(trat, bloco, exp, resp, ylab = "var1"))
type2=with(mirtilo, conjdbc(trat, bloco, exp, resp1, ylab = "var2"))
type3=with(mirtilo, conjdbc(trat, bloco, exp, resp2, ylab = "var3"))
type4=with(mirtilo, conjdbc(trat, bloco, exp, resp3, ylab = "var4"))
summarise_conj(analysis = list(type1,type2,type3,type4))

Run the code above in your browser using DataLab