na_status {simputation} | R Documentation |
Show the number of (remaining) missing values.
Description
Quick indication of the amount and location of missing values.
Usage
na_status(
x,
show_only_missing = TRUE,
sort_columns = show_only_missing,
show_message = TRUE,
...
)
Arguments
x |
an R object caryying data (e.g. |
show_only_missing |
if |
sort_columns |
If |
show_message |
if |
... |
arguments to be passed to other methods. |
Value
data.frame
with the column and number of NA's
See Also
Examples
irisNA <- iris
irisNA[1:3,1] <- irisNA[3:7,2] <- NA
na_status(irisNA)
# impute a constant
a <- impute_const(irisNA, Sepal.Width ~ 7)
na_status(a)
[Package simputation version 0.2.8 Index]