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-multinom.Rd

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

OHA YOOOO