DistrList {distr}R Documentation

Generating function for DistrList-class

Description

Generates an object of class "DistrList".

Usage

DistrList(...)

Arguments

... Objects of class "Distribution" which shall form the list of distributions.

Value

Object of class "DistrList"

Author(s)

Matthias Kohl Matthias.Kohl@stamats.de

See Also

DistrList-class, UnivarDistrList-class, UnivarDistrList

Examples

(DL <- DistrList(Norm(), Exp(), Pois()))
plot(DL)
as(Norm(), "DistrList")

## The function is currently defined as
function(...){ 
    new("DistrList", list(...)) 
}

[Package distr version 2.0.6 Index]