MINI MINI MANI MO
%
% Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
%
\name{ore.predict-prcomp}
\alias{ore.predict-prcomp}
\alias{ore.predict,prcomp-method}
\title{Oracle R Enterprise Predictions Using \code{\link[stats]{prcomp}} Models}
\description{
Oracle R Enterprise method for generating predictions using
\code{\link[stats]{prcomp}} models.
}
\usage{
\S4method{ore.predict}{prcomp}(object, newdata, ...)
}
\arguments{
\item{object}{A \code{\link[stats]{prcomp}} object.}
\item{newdata}{An \code{\link[OREbase:ore.frame-class]{ore.frame}}
object.}
\item{\dots}{Optional arguments.}
}
\value{
Returns an \code{\link[OREbase:ore.frame-class]{ore.frame}} object
containing the rotated columns of \code{newdata}.
}
\references{
\href{http://www.oracle.com/technetwork/database/database-technologies/r/r-enterprise/documentation/index.html}{Oracle R Enterprise}
}
\author{
Oracle \email{oracle-r-enterprise@oracle.com}
}
\seealso{
\code{\link{ore.predict}},
\code{\link[stats]{prcomp}}.
}
\examples{
irisModel <- prcomp(~ Sepal.Length + Sepal.Width + Petal.Length + Petal.Width,
data = iris)
IRIS <- ore.push(iris)
IRIS <- cbind(IRIS, ore.predict(irisModel, IRIS))
}
\keyword{multivariate}
OHA YOOOO