mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-12-16 17:42:10 +01:00
30 lines
287 B
Markdown
30 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
|
||
|
|
```
|