Skip to content

Commit bb2a3c9

Browse files
20251221 - fixes
1 parent 92d876b commit bb2a3c9

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

markdown.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This helps with version control—individually changed sentences will be highlig
4343
- Use no spaces in file or folder names.
4444
Use a dash (-) instead of a space.
4545
- If you use `Visual Studio Code` to edit the Lab Wiki, you can view the source code side-by-side with the markdown Preview (after selecting the code type as `markdown`):
46-
![Visual Studio Code](images/vsCode.png){.lightbox}
46+
![Visual Studio Code](images/vsCode.png)
4747
- When making numbered (ordered) lists, just use `1. ` for all numbers.
4848
Markdown will make them sequential automatically.
4949
This is helpful if you go back and add additional entries later.

multipleImputation.qmd

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,18 @@ mice::predict_mi(
549549
```{r}
550550
#| echo: false
551551
552+
fit_lmer_fitted <- mice::predict_mi(
553+
fit_lmer,
554+
#newdata = # can include if want to make predictions based on another (i.e., "new") data object
555+
se.fit = TRUE,
556+
interval = c("prediction")
557+
)
558+
```
559+
560+
```{r}
561+
#| echo: false
562+
#| eval: false
563+
552564
fit_lmer_fitted <- mice::predict_mi(
553565
fit_lmer,
554566
#newdata = # can include if want to make predictions based on another (i.e., "new") data object

0 commit comments

Comments
 (0)