StatDA (version 1.7.11)

rg.remove.na: Remove NA

Description

Function to remove NAs from a vector and inform the user of how many.

Usage

rg.remove.na(xx)

Value

x

vector without the NAs

nna

number of NAs removed

Arguments

xx

vector

Details

The function counts the NAs in a vector and returns the number of NAs and the "new" vector.

References

C. Reimann, P. Filzmoser, R.G. Garrett, and R. Dutter: Statistical Data Analysis Explained. Applied Environmental Statistics with R. John Wiley and Sons, Chichester, 2008.

Examples

Run this code
x<-rep(NA,10)
x[c(1,3,5,7,9)]<-10
rg.remove.na(x)

Run the code above in your browser using DataLab