| Distribution-class {distr} | R Documentation |
Class "Distribution"
Description
The Distribution-class is the mother-class of
class UnivariateDistribution.
Objects from the Class
Objects can be created by calls of the form new("Distribution").
Slots
imgObject of class
"rSpace": the space of the imageparamObject of class
"OptionalParameter": the parameterrObject of class
"function": generates random numbersdObject of class
"OptionalFunction": density functionpObject of class
"OptionalFunction": cumulative distribution functionqObject of class
"OptionalFunction": quantile function.withArithlogical: used internally to issue warnings as to interpretation of arithmetics
.withSimlogical: used internally to issue warnings as to accuracy
.logExactlogical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExactlogical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetryobject of class
"DistributionSymmetry"; used internally to avoid unnecessary calculations.
Methods
- img
signature(object = "Distribution"): returns the space of the image- param
signature(object = "Distribution"): returns the parameter- r
signature(object = "Distribution"): returns the random number generator- d
signature(object = "Distribution"): returns the density function- p
signature(object = "Distribution"): returns the cumulative distribution function- q
signature(object = "Distribution"): returns the quantile function- .logExact
signature(object = "Distribution"): returns slot.logExactif existing; else tries to convert the object to a newer version of its class byconv2NewVersionand returns the corresponding slot of the converted object.- .lowerExact
signature(object = "Distribution"): returns slot.lowerExactif existing; else tries to convert the object to a newer version of its class byconv2NewVersionand returns the corresponding slot of the converted object.- Symmetry:
returns slot
Symmetryif existing; else tries to convert the object to a newer version of its class byconv2NewVersionand returns the corresponding slot of the converted object.
Author(s)
Thomas Stabla statho3@web.de,
Florian Camphausen fcampi@gmx.de,
Peter Ruckdeschel peter.ruckdeschel@uni-oldenburg.de,
Matthias Kohl Matthias.Kohl@stamats.de
See Also
UnivariateDistribution-class
Parameter-class