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{
\code{\link[rpart]{rpart}} 모델을 사용한 Oracle R Enterprise 예측
}
\description{
\code{\link[rpart]{rpart}} 모델을 사용하여 예측을 생성하기 위한 Oracle R Enterprise
메소드입니다.
}
\usage{
\S4method{ore.predict}{rpart}(object, newdata,
type = c("vector", "prob", "class", "matrix"),
na.action = na.pass, ...)
}
\arguments{
\item{object}{
\code{\link[rpart]{rpart}} 모델 객체입니다.
}
\item{newdata}{
\code{\link[OREbase:ore.frame-class]{ore.frame}}
객체입니다.
}
\item{type}{
수행할 예측 유형을 지정하는 문자열로,
\code{"vector"}, \code{"prob"}, \code{"class"} 또는
\code{"matrix"}입니다.
}
\item{na.action}{
\code{NA} 값이 처리되는 방식으로,
\code{na.omit} 또는 \code{na.pass}입니다.
}
\item{\dots}{
선택적 인수입니다.
}
}
\value{
\code{\link[OREbase:ore-class]{ore}} 하위 클래스의 객체를 반환합니다.
}
\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