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