Exam2.1 {eda4treeR} | R Documentation |
Example 2.1 from Experimental Design and Analysis for Tree Improvement
Description
Exam2.1 is used to compare two seed lots by using single factor ANOVA.
Author(s)
Muhammad Yaseen (myaseen208@gmail.com)
Sami Ullah (samiullahuos@gmail.com)
References
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
Examples
library(car)
library(dae)
library(dplyr)
library(emmeans)
library(ggplot2)
library(lmerTest)
library(magrittr)
library(predictmeans)
data(DataExam2.1)
# Pg. 22
fmtab2.3 <- lm(formula = dbh ~ seedlot, data = DataExam2.1)
# Pg. 23
anova(fmtab2.3)
# Pg. 23
emmeans(object = fmtab2.3, specs = ~ seedlot)
emmip(object = fmtab2.3, formula = ~ seedlot) +
theme_classic()
[Package eda4treeR version 1.1.0 Index]