Skip to contents

[Deprecated]

This function counts the number of NA by variable in your data.frame

Usage

pdf1_na(obj, ...)

Arguments

obj

Object used to create the table.

data.frame, list or environment (or object coercible by as.data.frame to a data.frame)

...

Other arguments

Value

A tibble with n rows where n is equal to ncol(obj) and 2 columns

Examples

airquality %>%
  mypdf1::pdf1_na()
#> Warning: `pdf1_na()` was deprecated in mypdf1 0.6.
#> Use pdf1_summary instead
#> # A tibble: 6 × 2
#>   variable na_count
#>   <chr>       <dbl>
#> 1 Ozone          37
#> 2 Solar.R         7
#> 3 Wind            0
#> 4 Temp            0
#> 5 Month           0
#> 6 Day             0