allMissing: Identifies missing rows or columns in a data frame or matrix

Description Usage Arguments Value Author(s) See Also Examples

View source: R/allMissing.R

Description

Indicates which rows or columns in a data frame or matrix are completely missing (all values are NA's).

Usage

1
allMissing(dframe, byRow = TRUE)

Arguments

dframe

A data frame or a matrix

byRow

= TRUE will identify rows that have all missing values. = FALSE identifies entire missing columns

Value

A logical vector that is true if all the elements in the corresponding row (or column) are NA's.

Author(s)

Landon Sego

See Also

complete.cases

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
# Start off with a simple data frame that has a few missing values
d1 <- data.frame(x=c(3,4,NA,1,10,NA), y=c(NA,"b","c","d","e",NA))
d1

# Identify rows were the entire row is missing
allMissing(d1)

# Only removes rows where all the values are missing
d1[!allMissing(d1),]

# All missing can also be used to identify if any of the
# columns are 'all missing'
d2 <- data.frame(x=c(rnorm(3), NA, rnorm(6)), y=rep(NA,10), z=letters[1:10])
d2

# Look for columns that are all missing
allMissing(d2, byRow=FALSE)

# Remove columns where all the values are missing
d2[,!allMissing(d2, byRow = FALSE)]

Smisc documentation built on May 2, 2019, 2:46 a.m.