Description Usage Arguments Value Examples
Count missing values in all columns and calculate the percentage
1 | miss_count(df, ascending = FALSE)
|
df |
A dataframe of type data.frame |
ascending |
A boolean value to decide whether the df is sorted ascending or decending |
A dataframe with thee columns: column,counts and percentage
1 2 3 4 5 6 7 | mydf <- data.frame(
name = c("Amy","Tony","Jessica"),
age = c(18,21,30),
hobby = c("lab","quiz","swim")
)
miss_value <- miss_count(mydf,ascending = FALSE)
miss_value
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.