LogisticLocationScaleFamily {distrMod} | R Documentation |
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
Arguments
location |
location |
scale |
scale |
trafo |
function in |
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
.
Value
Object of class "L2LocationScaleFamily"
Author(s)
Peter Ruckdeschel Peter.Ruckdeschel@uni-oldenburg.de
References
Kohl, M. (2005) Numerical Contributions to the Asymptotic Theory of Robustness. Bayreuth: Dissertation.
See Also
L2ParamFamily-class
, Logis-class
Examples
(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)
[Package distrMod version 2.9.1 Index]