Example Description: Returns the indices of rows with columns which have missing values, as well as how many missing values they have

find_missing_ingredients(data)

Arguments

data

A data frame that to be checked for missing values

Value

A dataframe containing the columns: column_name, list_of_indices, na_count, na_proportion

Examples

tb = data.frame("letters" = c("a","b","c"),"numbers" = c(1,2,3)) find_missing_ingredients(tb)
#> [1] "There are no missing values"