Learn R Programming

distrMod (version 2.9.4)

LogisticLocationScaleFamily: Generating function for Logistic location and scale families

Description

Generates an object of class "L2LocationScaleFamily" which represents a normal location and scale family.

Usage

LogisticLocationScaleFamily(location = 0, scale = 1, trafo)
LOGISTINT2

Value

Object of class "L2LocationScaleFamily"

Arguments

location

location

scale

scale

trafo

function in param or matrix: transformation of the parameter

Author

Peter Ruckdeschel Peter.Ruckdeschel@uni-oldenburg.de

Details

The slots of the corresponding L2 differentiable parameteric family are filled. LOGISTINT2 is a constant used for the scale part of the Fisher information. More precisely LOGISTINT2 equals to \(\int_{-\infty}^{\infty} (\tanh(x/2)\,x-1)^2\,{\rm dlogis}(x)\,dx\).

References

Kohl, M. (2005) Numerical Contributions to the Asymptotic Theory of Robustness. Bayreuth: Dissertation.

See Also

L2ParamFamily-class, Logis-class

Examples

Run this code
(L1 <- LogisticLocationScaleFamily())
## synonymous: L1 <- LogisticFamily()
plot(L1)
FisherInfo(L1)
### need smaller integration range:
distrExoptions("ElowerTruncQuantile"=1e-4,"EupperTruncQuantile"=1e-4)
checkL2deriv(L1)
distrExoptions("ElowerTruncQuantile"=1e-7,"EupperTruncQuantile"=1e-7)
##
set.seed(123)
x <- rlogis(100,location=1,scale=2)
CvMMDEstimator(x, L1)

Run the code above in your browser using DataLab