Exam2.2 {eda4treeR}R Documentation

Example 2.2 from Experimental Design and Analysis for Tree Improvement

Description

Exam2.2 is used to compare two seed lots by using ANOVA under RCB Design.

Author(s)

  1. Muhammad Yaseen (myaseen208@gmail.com)

  2. Sami Ullah (samiullahuos@gmail.com)

References

  1. E.R. Williams, C.E. Harwood and A.C. Matheson (2023). Experimental Design and Analysis for Tree Improvement. CSIRO Publishing (https://www.publish.csiro.au/book/3145/).

See Also

DataExam2.2

Examples

library(car)
library(dae)
library(dplyr)
library(emmeans)
library(ggplot2)
library(lmerTest)
library(magrittr)
library(predictmeans)
library(supernova)

data(DataExam2.2)

# Pg. 24
fmtab2.5 <- lm(formula  = dbh ~ Blk + SeedLot, data = DataExam2.2)

# Pg. 26
anova(fmtab2.5)
supernova(fmtab2.5, type = 1)

# Pg. 26
emmeans(object = fmtab2.5, specs = ~ SeedLot)
emmip(object = fmtab2.5, formula = ~ SeedLot) +
  theme_classic()


[Package eda4treeR version 0.6.0 Index]