mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 12:37:30 +02:00
29 lines
287 B
Markdown
29 lines
287 B
Markdown
|
|
# Validate function of missingness in data
|
||
|
|
|
||
|
|
Validate function of missingness in data
|
||
|
|
|
||
|
|
## Usage
|
||
|
|
|
||
|
|
``` r
|
||
|
|
missings_validate(data)
|
||
|
|
```
|
||
|
|
|
||
|
|
## Arguments
|
||
|
|
|
||
|
|
- data:
|
||
|
|
|
||
|
|
data set
|
||
|
|
|
||
|
|
## Value
|
||
|
|
|
||
|
|
data.frame
|
||
|
|
|
||
|
|
## Examples
|
||
|
|
|
||
|
|
``` r
|
||
|
|
df <- mtcars
|
||
|
|
df[1, 2:4] <- NA
|
||
|
|
missings_validate(df)
|
||
|
|
#> p_miss
|
||
|
|
#> 1 0.85
|
||
|
|
```
|