num_row_NAs: Counts number of NAs in each row

Description Usage Arguments Value See Also Examples

View source: R/row-redux.R

Description

This function will return a vector, with the same length as the number of rows of the provided data frame, corresponding to the number of missing values in each row

Usage

1
num_row_NAs(data, allow.NaN = FALSE)

Arguments

data

A data frame

allow.NaN

Treat NaN like NA (by counting it). FALSE by default

Value

A vector of number of missing values in each row

See Also

is.na is.nan not_na

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
num_row_NAs(mtcars)


library(magrittr)            # for piping operator
library(dplyr)               # for "everything()" function

# using every column from mtcars, make sure there are at most
# 2 NAs in each row. If there are any more than two, error out
mtcars %>%
  assert_rows(num_row_NAs, within_bounds(0,2), everything())
  ## anything here will run

lorenzwalthert/assertr documentation built on May 20, 2019, 4:06 p.m.