E_llogis.Rd
Expected value of the Loglogistic distribution with shape parameter \(\tau\) and scale parameter \(\lambda\).
E_llogis(shape, rate = 1/scale, scale = 1/rate)
shape | shape parameter \(\tau\), must be positive integer. |
---|---|
rate | alternative parameterization the scale parameter, rate = 1 / scale. |
scale | \(\lambda\) rate parameter, must be positive. |
Function :
dllogis
gives the density function.
pllogis
gives the cumulative density function.
E_llogis
gives the expected value.
V_llogis
gives the variance.
kthmoment_llogis
gives the kth moment.
Etrunc_llogis
gives the truncated mean.
SL_llogis
gives the stop-loss.
Elim_llogis
gives the limited mean.
Mexcess_llogis
gives the mean excess loss.
TVaR_llogis
gives the Tail Value-at-Risk.
VaR_llogis
gives the Value-at-Risk.
Invalid parameter values will return an error detailing which parameter is problematic.
The Loglogistic distribution with shape parameter \(\tau\) and scale parameter \(\lambda\) has density: $$\frac{\tau \lambda^\tau x^{\tau -1}}{(\lambda^{\tau }+x^{\tau })^{2}}$$ for \(x \in \mathcal{R}^+\), \(\lambda, \tau > 0\).
Other Loglogistic Distribution:
Elim_llogis()
,
Etrunc_llogis()
,
Mexcess_llogis()
,
SL_llogis()
,
TVaR_llogis()
,
V_llogis()
,
VaR_llogis()
,
dllogis()
,
kthmoment_llogis()
,
pllogis()
# With scale parameter E_llogis(shape = 3, scale = 5)#> [1] 6.045998# With rate parameter E_llogis(shape = 3, rate = 0.2)#> [1] 6.045998