SSTdParameter-class {distrRmetrics} | R Documentation |
Parameter of an SSTd distributions
Description
The class of the parameter of an SSTd distribution.
Objects from the Class
Objects can be created by calls of the form new("SSTdParameter", ...)
.
Slots
mean
real number: location parameter of a SSTd distribution.
sd
real number: scale parameter of a SSTd distribution.
xi
real number: shape parameter of a SSTd distribution.
nu
positive number: the degree of freedom parameter of a SSTd distribution.
name
default name is “parameter of a SSTd distribution”.
Extends
Class "Parameter"
, directly.
Class "OptionalParameter"
, by class "Parameter"
.
Methods
- mean
signature(object = "SSTdParameter")
: access method for slotmean
.- sd
signature(object = "SSTdParameter")
: access method for slotsd
.- xi
signature(object = "SSTdParameter")
: access method for slotxi
.- nu
signature(object = "SSTdParameter")
: access method for slotnu
.
Author(s)
Peter Ruckdeschel peter.ruckdeschel@uni-oldenburg.de
See Also
Examples
P <- new("SSTdParameter")
mean(P)
sd(P)
xi(P)
nu(P)
P