1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
\name{UnivariateDistribution-class}
\docType{class}
\alias{UnivariateDistribution-class}
\alias{initialize,UnivariateDistribution-method}
\title{Class "UnivariateDistribution"}
\description{
The UnivariateDistribution-class is the mother-class of the classes
AbscontDistribution and DiscreteDistribution.
}
\section{Objects from the Class}{
Objects can be created by calls of the form \code{new("UnivariateDistribution")}.
}
\section{Slots}{
\describe{
\item{\code{img}}{Object of class \code{"Reals"}:
the space of the image of this distribution which has dimension 1
and the name "Real Space"}
\item{\code{param}}{Object of class \code{"Parameter"}:
the parameter of this distribution}
\item{\code{r}}{Object of class \code{"function"}:
generates random numbers}
\item{\code{d}}{Object of class \code{"function"}:
density function}
\item{\code{p}}{Object of class \code{"function"}:
cumulative distribution function}
\item{\code{q}}{Object of class \code{"function"}:
quantile function}
\item{\code{.withArith}}{logical: used internally to issue warnings as to
interpretation of arithmetics}
\item{\code{.withSim}}{logical: used internally to issue warnings as to
accuracy}
\item{\code{.logExact}}{logical: used internally to flag the case where
there are explicit formulae for the log version of density, cdf, and
quantile function}
\item{\code{.lowerExact}}{logical: used internally to flag the case where
there are explicit formulae for the lower tail version of cdf and quantile
function}
\item{\code{Symmetry}}{object of class \code{"DistributionSymmetry"};
used internally to avoid unnecessary calculations.}
}
}
\section{Extends}{
Class \code{"Distribution"}, directly.
}
\section{Methods}{
\describe{
\item{initialize}{\code{signature(.Object = "UnivariateDistribution")}:
initialize method }
\item{dim}{\code{signature(x = "UnivariateDistribution")}:
returns the dimension of the support of the distribution}
\item{-}{\code{signature(e1 = "UnivariateDistribution")}:
application of `-' to this univariate distribution}
\item{*}{\code{signature(e1 = "UnivariateDistribution", e2 = "numeric")}:
multiplication of this univariate distribution by an object of
class `numeric'}
\item{/}{\code{signature(e1 = "UnivariateDistribution", e2 = "numeric")}:
division of this univariate distribution by an object of class `numeric'}
\item{+}{\code{signature(e1 = "UnivariateDistribution", e2 = "numeric")}:
addition of this univariate distribution to an object of class
`numeric'}
\item{-}{\code{signature(e1 = "UnivariateDistribution", e2 = "numeric")}:
subtraction of an object of class `numeric' from this univariate
distribution}
\item{*}{\code{signature(e1 = "numeric", e2 = "UnivariateDistribution")}:
multiplication of this univariate distribution by an object of
class `numeric'}
\item{+}{\code{signature(e1 = "numeric", e2 = "UnivariateDistribution")}:
addition of this univariate distribution to an object of class
`numeric'}
\item{-}{\code{signature(e1 = "numeric", e2 = "UnivariateDistribution")}:
subtraction of this univariate distribution from an object of
class `numeric'}
\item{+}{\code{signature(e1 = "UnivariateDistribution", e2 = "UnivariateDistribution")}:
Convolution of two univariate distributions. The slots p, d and q
are approximated by grids.}
\item{-}{\code{signature(e1 = "UnivariateDistribution", e2 = "UnivariateDistribution")}:
Convolution of two univariate distributions. The slots p, d and q
are approximated by grids.}
\item{simplifyr}{\code{signature(object = "UnivariateDistribution")}:
simplifies the r-method of a distribution, see there for further information}
\item{print}{\code{signature(object = "UnivariateDistribution")}:
returns the class of the object and its parameters}
\item{show}{\code{signature(object = "UnivariateDistribution")}:
as print}
}
}
\author{
Thomas Stabla \email{statho3@web.de},\cr
Florian Camphausen \email{fcampi@gmx.de},\cr
Peter Ruckdeschel \email{peter.ruckdeschel@uni-oldenburg.de},\cr
Matthias Kohl \email{Matthias.Kohl@stamats.de}
}
\seealso{
\code{\link{Parameter-class}}
\code{\link{Distribution-class}}
\code{\link{AbscontDistribution-class}} \cr
\code{\link{DiscreteDistribution-class}}
\code{\link{Reals-class}}
\code{\link{RtoDPQ}}
\code{\link{simplifyr-methods}}
}
\keyword{distribution}
\concept{univariate distribution}
\concept{S4 distribution class}
|