Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Sep 21, 2023
1 parent ddeacf1 commit a1c1488
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vignettes/model_parameters_mice.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ knitr::opts_chunk$set(comment = "#>")
if (!requireNamespace("mice", quietly = TRUE) ||
!requireNamespace("GLMMadaptive", quietly = TRUE) ||
!requireNamespace("glmmTMB", quietly = TRUE) ||
!requireNamespace("lme4", quietly = TRUE)) {
knitr::opts_chunk$set(eval = FALSE)
}
Expand Down Expand Up @@ -65,7 +66,7 @@ library(lme4)
library(GLMMadaptive)
data(cbpp)
cbpp$period[sample(1:nrow(cbpp), size = 10)] <- NA
cbpp$period[sample(seq_len(nrow(cbpp)), size = 10)] <- NA
imputed_data <- mice(cbpp, printFlag = FALSE)
```
Expand Down

0 comments on commit a1c1488

Please sign in to comment.