Skip to content

Commit 8fe375a

Browse files
authored
Merge pull request #5 from Bayer-Group/main
added tidyveres in LMM, GLMM and GAMM results
2 parents e09856c + 61d8c0e commit 8fe375a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vignettes/articles/LMM-GLMM-and-GAMM.Rmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ knitr::opts_chunk$set(
99
warning = FALSE,
1010
message = FALSE
1111
)
12+
library(tidyverse)
1213
```
1314

1415
```{r setup}
@@ -40,7 +41,7 @@ sim_data_inhomogeneous <- simulate_dose_response(
4041
include_individuals = TRUE
4142
)
4243
43-
prelimPlot3(sim_data_inhomogeneous%>% group_by(Dose,Tank)%>%summarise(Response=mean(Response)))
44+
prelimPlot3(sim_data_inhomogeneous%>% group_by(Dose,Tank)%>%summarise(Response=mean(Response),.groups = "drop"))
4445
4546
```
4647

0 commit comments

Comments
 (0)