mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 18:09:39 +02:00
26 lines
678 B
Text
26 lines
678 B
Text
---
|
|
title: "Missingness in data"
|
|
output: rmarkdown::html_vignette
|
|
vignette: >
|
|
%\VignetteIndexEntry{missingness}
|
|
%\VignetteEngine{knitr::rmarkdown}
|
|
%\VignetteEncoding{UTF-8}
|
|
---
|
|
|
|
```{r, include = FALSE}
|
|
knitr::opts_chunk$set(
|
|
collapse = TRUE,
|
|
comment = "#>"
|
|
)
|
|
options(rmarkdown.html_vignette.check_title = FALSE)
|
|
```
|
|
|
|
```{r setup}
|
|
library(FreesearchR)
|
|
```
|
|
|
|
## Considering missing observations
|
|
|
|
### Further reading
|
|
|
|
The authors behind the [{finalfit}-package](https://finalfit.org/index.html) have shared a very comprehensive article on what to do and think about missing observations in your data. Please [have a look here](https://finalfit.org/articles/missing.html).
|