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
|
\name{UnivarMixingDistribution-class}
\docType{class}
\alias{UnivarMixingDistribution-class}
\alias{mixCoeff}
\alias{mixDistr}
\alias{mixCoeff<-}
\alias{mixDistr<-}
\alias{mixCoeff<--methods}
\alias{mixDistr<--methods}
\alias{mixCoeff<-,UnivarMixingDistribution-method}
\alias{mixDistr<-,UnivarMixingDistribution-method}
\alias{mixCoeff-methods}
\alias{mixDistr-methods}
\alias{mixCoeff,UnivarMixingDistribution-method}
\alias{mixDistr,UnivarMixingDistribution-method}
\alias{support,UnivarMixingDistribution-method}
\alias{gaps,UnivarMixingDistribution-method}
\alias{.logExact,UnivarMixingDistribution-method}
\alias{.lowerExact,UnivarMixingDistribution-method}
\alias{Symmetry,UnivarMixingDistribution-method}
\title{Class "UnivarMixingDistribution"}
\description{\code{UnivarMixingDistribution}-class is a class to formalize
univariate mixing distributions; it is a subclass to
class \code{UnivariateDistribution}.}
\section{Objects from the Class}{
Objects can be created by calls of the form
\code{new("UnivarMixingDistribution", ...)}.
More frequently they are created via the generating function
\code{\link{UnivarMixingDistribution}}.
}
\section{Slots}{
\describe{
\item{\code{mixCoeff}}{Object of class \code{"numeric"}: a vector of
probabilities for the mixing components.}
\item{\code{mixDistr}}{Object of class \code{"UnivarDistrList"}: a list of
univariate distributions containing the mixing components; must be of same
length as \code{mixCoeff}.}
\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, having only the
slot name "Parameter of a discrete distribution" }
\item{\code{r}}{Object of class \code{"function"}: generates random numbers}
\item{\code{d}}{fixed to \code{NULL}}
\item{\code{p}}{Object of class \code{"function"}: cumulative distribution function}
\item{\code{q}}{Object of class \code{"function"}: quantile function}
\item{\code{support}}{numeric vector --- the union of all support slots of components, if existing}
\item{\code{gaps}}{(numeric) matrix or \code{NULL}; the merged \code{gaps} slots of all components,
if existing (else NULL)}
\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{"UnivariateDistribution"}
class \code{"Distribution"} by class \code{"UnivariateDistribution"}.
}
\section{Methods}{
\describe{
\item{show}{\code{signature(object = "UnivarMixingDistribution")} prints the object}
\item{mixCoeff<-}{\code{signature(object = "UnivarMixingDistribution")} replaces the corresponding slot}
\item{mixCoeff}{\code{signature(object = "UnivarMixingDistribution")} returns the corresponding slot}
\item{mixDistr<-}{\code{signature(object = "UnivarMixingDistribution")} replaces the corresponding slot}
\item{mixDistr}{\code{signature(object = "UnivarMixingDistribution")} returns the corresponding slot}
\item{support}{\code{signature(object = "UnivarMixingDistribution")} returns the corresponding slot}
\item{gaps}{\code{signature(object = "UnivarMixingDistribution")} returns the corresponding slot}
\item{.logExact}{\code{signature(object = "Distribution")}: returns slot
\code{.logExact} if existing; else tries to convert the object to a newer
version of its class by \code{\link{conv2NewVersion}} and
returns the corresponding slot of the converted object.}
\item{.lowerExact}{\code{signature(object = "Distribution")}: returns slot
\code{.lowerExact} if existing; else tries to convert the object to a
newer version of its class by \code{\link{conv2NewVersion}} and
returns the corresponding slot of the converted object.}
\item{Symmetry}{returns slot \code{Symmetry} if existing; else
tries to convert the object to a
newer version of its class by \code{\link{conv2NewVersion}} and
returns the corresponding slot of the converted object.}
}
}
\author{
Peter Ruckdeschel \email{peter.ruckdeschel@uni-oldenburg.de}
}
\seealso{
\code{\link{Parameter-class}},
\code{\link{UnivariateDistribution-class}},
\code{\link{LatticeDistribution-class}},
\code{\link{AbscontDistribution-class}},
\code{\link{simplifyD}},
\code{\link{flat.mix}}
}
\examples{
mylist <- UnivarMixingDistribution(Binom(3,.3), Dirac(2), Norm(),
mixCoeff=c(1/4,1/5,11/20))
mylist2 <- UnivarMixingDistribution(Binom(3,.3), mylist,
mixCoeff=c(.3,.7))
mylist2
p(mylist)(0.3)
mixDistr(mylist2)
}
\keyword{distribution}
\concept{discrete distribution}
\concept{lattice distribution}
\concept{support of a distribution}
\concept{S4 distribution class}
\concept{generating function}
|