Skip to content

Commit

Permalink
fix II
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidhuharp97 committed Jan 13, 2025
1 parent 2385962 commit 914333d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions chapters/split-split-plot.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
```
Expand Down

0 comments on commit 914333d

Please sign in to comment.