rg.remove.na {StatDA} | R Documentation |
Remove NA
Description
Function to remove NAs from a vector and inform the user of how many.
Usage
rg.remove.na(xx)
Arguments
xx |
vector |
Details
The function counts the NAs in a vector and returns the number of NAs and the "new" vector.
Value
x |
vector without the NAs |
nna |
number of NAs removed |
Author(s)
Peter Filzmoser <P.Filzmoser@tuwien.ac.at> http://cstat.tuwien.ac.at/filz/
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
x<-rep(NA,10)
x[c(1,3,5,7,9)]<-10
rg.remove.na(x)
[Package StatDA version 1.7.11 Index]