na.omit.rrpp.data.frame {RRPP} | R Documentation |
Handle missing values in rrpp.data.frame objects
Description
Handle missing values in rrpp.data.frame objects
Usage
## S3 method for class 'rrpp.data.frame'
na.omit(object, ...)
Arguments
object |
object (from |
... |
further arguments (currently not used) |
Author(s)
Michael Collyer
Examples
y <- matrix(rnorm(15), 5, 3)
x <- rnorm(5)
rdf <- rrpp.data.frame(x = x, y = y, d = dist(y))
rdf$x[1] <- NA # create missing data
rdf
ndf <- na.omit(rdf)
ndf
[Package RRPP version 2.0.3 Index]