MINI MINI MANI MO
%
% Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
%
\name{ore.predict-rpart}
\alias{ore.predict-rpart}
\alias{ore.predict,rpart-method}
\title{
Oracle R Enterprise-Vorhersagen mit \code{\link[rpart]{rpart}}-Modellen
}
\description{
Oracle R Enterprise-Methode zur Generierung von Vorhersagen mit
\code{\link[rpart]{rpart}}-Modellen.
}
\usage{
\S4method{ore.predict}{rpart}(object, newdata,
type = c("vector", "prob", "class", "matrix"),
na.action = na.pass, ...)
}
\arguments{
\item{object}{
Ein \code{\link[rpart]{rpart}}-Modellobjekt.
}
\item{newdata}{
Ein \code{\link[OREbase:ore.frame-class]{ore.frame}}-
Objekt.
}
\item{type}{
Eine Zeichenfolge, die den vorzunehmenden Vorhersagetyp
angibt; entweder \code{"vector"}, \code{"prob"}, \code{"class"} oder
\code{"matrix"}.
}
\item{na.action}{
Die Art, in der \code{NA}-Werte behandelt werden,
entweder \code{na.omit} oder \code{na.pass}.
}
\item{\dots}{
Optionale Argumente.
}
}
\value{
Gibt ein Objekt einer \code{\link[OREbase:ore-class]{ore}}-Unterklasse zurück.
}
\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[rpart]{predict.rpart}}.
}
\examples{
library(rpart)
model <- rpart(Kyphosis ~ ., data = kyphosis)
KYPHOSIS <- ore.push(kyphosis)
KYPHOSIS <- cbind(KYPHOSIS, ore.predict(model, KYPHOSIS))
head(KYPHOSIS)
}
\keyword{models}
OHA YOOOO