| UnivarDistrList {distrEx} | R Documentation |
Generates an object of class "UnivarDistrList".
UnivarDistrList(...)
... |
Objects of class "UnivariateDistribution" which
shall form the list of univariate distributions. |
Object of class "UnivarDistrList"
Matthias Kohl Matthias.Kohl@stamats.de
DistrList-class, UnivarDistrList-class,
UnivarDistrList
(DL <- UnivarDistrList(Norm(), Exp(), Pois()))
plot(DL)
as(Norm(), "UnivarDistrList")
## The function is currently defined as
function(...){
new("UnivarDistrList", list(...))
}