na_status | R Documentation |
Quick indication of the amount and location of missing values.
na_status( x, show_only_missing = TRUE, sort_columns = show_only_missing, show_message = TRUE, ... )
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. |
data.frame
with the column and number of NA's
glimpse_na
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.