Skip to contents

Calculate the percentage of cases (rows) that contain a missing or complete value.

Usage

pct_miss_case(data)

pct_complete_case(data)

Arguments

data

a dataframe

Value

numeric the percentage of cases that contain a missing or complete value

Examples


pct_miss_case(airquality)
#> [1] 27.45098
pct_complete_case(airquality)
#> [1] 72.54902