MINI MINI MANI MO

Path : /opt/oracle/product/18c/dbhomeXE/R/library/OREpredict/doc/man/zh_TW/
File Upload :
Current File : //opt/oracle/product/18c/dbhomeXE/R/library/OREpredict/doc/man/zh_TW/ore.predict-rpart.Rd

%
% 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