rgr (version 1.1.15)

where.na: Identify Vector Elements or Data Frame/Matrix Rows with NAs

Description

Function to display the positions of elements in a vector containing NAs, or the numbers of rows in a data frame or matrix containing one or more NAs. The function can also be used to remove NAs.

Usage

where.na(x)

Arguments

x

name of the vector or matrix/data frame to be processed.

Value

whichna

a vector containing the indices of the positions in x containing NAs.

See Also

remove.na

Examples

Run this code
# NOT RUN {
## Identify rows with NAs
xx <- c(15, 39, 18, 16, NA, 53)
where.na(xx)

## To use where.na to remove NAs, method 1
xx
temp <- where.na(xx)
temp
xxx <- xx[-temp]
xxx

## To use where.na to remove NAs, method 2
xx
xxx <- xx[-where.na(xx)]
xxx

## Clean-up
rm(xx)
rm(xxx)
rm(temp)
# }

Run the code above in your browser using DataLab