MINI MINI MANI MO

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

%
% Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. 
%
\name{ore.predict-nnet}
\alias{ore.predict-nnet}
\alias{ore.predict-nnet.formula}
\alias{ore.predict,nnet.formula-method}
\title{
\code{\link[nnet]{nnet}}モデルを使用したOracle R Enterpriseの予測
}
\description{
\code{\link[nnet]{nnet}}モデルを使用して予測を生成する
  Oracle R Enterpriseのメソッド。
}
\usage{
  \S4method{ore.predict}{nnet.formula}(object, newdata, type = c("raw", "class"),
            na.action = na.pass, ...)
}
\arguments{
  \item{object}{
\code{\link[nnet]{nnet}}モデル・オブジェクト。
}
  \item{newdata}{
\code{\link[OREbase:ore.frame-class]{ore.frame}}オブジェクト。
}
  \item{type}{
実行する予測のタイプを指定する文字列。
    \code{"raw"}または\code{"class"}。
}
  \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[nnet]{predict.nnet}}.
}
\examples{
library(nnet)
model <- nnet(Species ~ ., data = iris, size = 2, rang = 0.1,
              decay = 5e-4, maxit = 200, trace = FALSE)
IRIS <- ore.push(iris)
IRIS <- cbind(IRIS, ore.predict(model, IRIS))
}
\keyword{models}

OHA YOOOO