ger_testcomp: Multiple comparison test

View source: R/ger_testcomp.R

ger_testcompR Documentation

Multiple comparison test

Description

Function analysis of variance for summary data.

Usage

ger_testcomp(aov, comp, type = "snk", sig = 0.05)

Arguments

aov

lm o aov result function.

comp

treatments will be compared.

type

method for made comparison analysis: c("snk", "tukey", "duncan").

sig

significance level. Default 0.05

Value

Table with complete data for graphics

Examples

 

## Not run: 

library(GerminaR)
library(dplyr)

gdata <- prosopis %>% mutate(across(c(nacl, temp, rep), as.factor))

smr <- ger_summary(SeedN = "seeds", evalName = "D", data = gdata)

av <- aov(grp ~ rep + nacl*temp, smr)

mc <- ger_testcomp(aov = av
                   , comp = c("nacl", "temp")
                   )
                   

## End(Not run) 

Flavjack/GerminaR documentation built on May 31, 2022, 9:33 p.m.