DistrList
From distrEx v0.4-2
by Matthias Kohl
Generating function for DistrList-class
Generates an object of class "DistrList"
.
- Keywords
- distribution, list
Usage
DistrList(...)
Arguments
- ...
- Objects of class
"Distribution"
which shall form the list of distributions.
Value
- Object of class
"DistrList"
See Also
Examples
(DL <- DistrList(Norm(), Exp(), Pois()))
plot(DL)
as(Norm(), "DistrList")
## The function is currently defined as
function(...){
new("DistrList", list(...))
}
Community examples
Looks like there are no examples yet.