MINI MINI MANI MO

Path : /opt/oracle/product/18c/dbhomeXE/R/library/OREeda/doc/man/en/
File Upload :
Current File : //opt/oracle/product/18c/dbhomeXE/R/library/OREeda/doc/man/en/ore.univariate.Rd

%
% Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. 
%
\name{ore.univariate}
\alias{ore.univariate}
\title{Oracle R Enterprise Univariate Summaries}
\description{
  Performs distribution analysis of numeric columns in an object of type
  \code{\link[OREbase:ore.frame-class]{ore.frame}}. Reports all
  statistics from the function \code{\link{ore.summary}} plus
  signed-rank test and extreme values.
}
\usage{
  ore.univariate(data, var, class = NULL, stats = NULL, special = NULL,
                 id = NULL, weight = NULL, extremes = FALSE,
                 nextrval = 5, exclnpwgt = FALSE, freq = NULL,
                 idout = FALSE, loccount = FALSE, mu0 = NULL,
                 def = NULL) 
}
\arguments{
  \item{data}{An \code{\link[OREbase:ore.frame-class]{ore.frame}} object.}
  \item{var}{A comma-separated character string specifying the names of
    numeric columns within argument \code{data}.}
  \item{class}{A comma-separated character string specifying the names of
    categorical columns within argument \code{data}.}
  \item{stats}{A comma-separated character string specifying the
    statistical calculations for argument \code{var}. Currently the
    supported arguments are \code{moments} or \code{m}, \code{measures} or
    \code{s}, \code{quantiles} or \code{q}, \code{location} or \code{l},
    \code{normality} or \code{n}, \code{loccount} or \code{lc},
    \code{extremes} or \code{x}.}
  \item{special}{Argument not supported.}
  \item{id}{Argument not supported.}
  \item{weight}{An optional character string specifying a numeric column
    within argument \code{data} to use as analytic weights.}
  \item{extremes}{A logical value indicating whether to report extreme
    values for columns specified in argument \code{var}.}
  \item{nextrval}{An integer value specifying the depth of reporting for
    extreme values; default is \code{5}.}
  \item{exclnpwgt}{Argument not supported.}
  \item{freq}{Argument not supported.}
  \item{idout}{Argument not supported.}
  \item{loccount}{Argument not supported.}
  \item{mu0}{Argument not supported.}
  \item{def}{Argument not supported.}
}
\value{
  Returns an \code{\link[OREbase:ore.frame-class]{ore.frame}} object.
}
\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.summary}}
}
\examples{
  IRIS <- ore.push(iris)

  # Default univariate statistics
  x <- ore.univariate(IRIS, var=c("Sepal.Length", "Sepal.Width"))

  # Compute location statistics on Sepal.Length
  x <- ore.univariate(IRIS, var="Sepal.Length", stats="location")

  # Compute quantiles statistics on Sepal.Length and Sepal.Width
  x <- ore.univariate(IRIS, var=c("Sepal.Length", "Sepal.Width"),
                      stats="quantiles")
}
\keyword{univar}

OHA YOOOO