FindRowNA: Identifies Number and Percentage of NAs By Row

Description Usage Arguments Value Examples

View source: R/FindRowNA.R

Description

Displays the count and

If Verbose = F, returns dataframe with Row, NA_Count, Percent_of_Row

Usage

1
FindRowNA(x, verbose = TRUE)

Arguments

x

A matrix-like R object

verbose

Logical value to print results to console

Value

A dataframe of results

Examples

1
2
3
4
5
6
7
8
9
## Not run: 
#EXAMPLE

## End(Not run)
set.seed(100)
x = matrix(rnorm(100), ncol = 10)
x[2,3] <-NA #Adding Missing Value

FindRowNA(x)

ckornafel/expldata documentation built on Dec. 27, 2019, 2:20 a.m.