Learn R Programming

eda4treeR (version 0.3.0)

Exam3.1.1: Example 3.1.1 from Experimental Design & Analysis for Tree Improvement

Description

Exam3.1.1 is part of data from Australian Centre for Agricultural Research (ACIAR) in Queensland, Australia (Experiment 309).

Arguments

References

  1. Williams, E.R., Matheson, A.C. and Harwood, C.E. (2002).Experimental Design and Analysis for Tree Improvement. CSIRO Publishing.

See Also

DataExam3.1.1

Examples

Run this code
# NOT RUN {
library(tidyverse)
data(DataExam3.1.1)

fm3.8   <-     lm(
   formula     = Mean~Repl+SeedLot
 , data        = DataExam3.1.1
 #, subset
 #, weights
 #, na.action
 , method      = "qr"
 , model       = TRUE
 , x           = FALSE
 , y           = FALSE
 , qr          = TRUE
 , singular.ok = TRUE
 , contrasts   = NULL
  )
anova(fm3.8)
DataExam3.1.1 %>%
dplyr::ungroup() %>%
 dplyr::group_by(SeedLot) %>%
 dplyr::summarize(Mean=mean(Mean))
# }

Run the code above in your browser using DataLab