na.omit.rrpp.data.frame | R Documentation |
Handle missing values in rrpp.data.frame objects
## S3 method for class 'rrpp.data.frame'
na.omit(object, ...)
object |
object (from |
... |
further arguments (currently not used) |
Michael Collyer
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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.