SNormParameter-class {distrRmetrics}R Documentation

Parameter of an SNorm distributions

Description

The class of the parameter of an SNorm distribution.

Objects from the Class

Objects can be created by calls of the form new("SNormParameter", ...).

Slots

mean

real number: location parameter of a SNorm distribution.

sd

real number: scale parameter of a SNorm distribution.

name

default name is “parameter of a SNorm distribution”.

xi

real number: shape parameter of a SNorm distribution.

Extends

Class "Parameter", directly.
Class "OptionalParameter", by class "Parameter".

Methods

mean

signature(object = "SNormParameter"): access method for slot mean.

sd

signature(object = "SNormParameter"): access method for slot sd.

xi

signature(object = "SNormParameter"): access method for slot xi.

Author(s)

Peter Ruckdeschel peter.ruckdeschel@uni-oldenburg.de

See Also

SNorm-class, Parameter-class

Examples

P <- new("SNormParameter")
mean(P)
sd(P)
xi(P)
P

[Package distrRmetrics version 2.8.2 Index]