From 914333daa6e9d4f1b177c2b2474f86ef0bf235f5 Mon Sep 17 00:00:00 2001 From: Harpreet Kaur Date: Mon, 13 Jan 2025 15:01:41 -0800 Subject: [PATCH] fix II --- chapters/split-split-plot.qmd | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/chapters/split-split-plot.qmd b/chapters/split-split-plot.qmd index 65d8515..5a5cf94 100644 --- a/chapters/split-split-plot.qmd +++ b/chapters/split-split-plot.qmd @@ -48,15 +48,13 @@ library(broom.mixed); library(performance) In this example, we have a rice yield data from the [agricolae](https://CRAN.R-project.org/package=agricolae) package. The experiment consists of 3 different rice varieties grown under 3 management practices and 5 Nitrogen levels in the split-split plot design. -```{r} +```{r, echo=FALSE, eval=FALSE} library(agricolae) f <- system.file("external/ssp.csv", package="agricolae") rice <- read.csv(f) ``` -```{r, echo=FALSE, eval=FALSE} -library(agricolae) -dat <- rice +```{r} data <- agricolae::rice_ssp.csv rice <- read.csv(here::here("data", "rice_ssp.csv")) ```