extreme value {smoothSurv}R Documentation

Density of the Extreme Value Distribution of a Minimum.

Description

Density function of the extreme value distribution of a minimum with location α\alpha and scale β\beta and the density of the standardized version (with zero mean and unit variance).

Usage

dextreme(x, alpha=0, beta=1)
dstextreme(x)

Arguments

x

Vector of quantiles.

alpha

Vector of location parameters.

beta

Vector of scale parameters.

Details

Extreme value distribution of a minimum with the location α\alpha and the scale β\beta has a density

f(x)=1βexp[xαβexp(xαβ)]f(x) = \frac{1}{\beta}\exp\left[\frac{x-\alpha}{\beta}-\exp\left(\frac{x-\alpha}{\beta}\right)\right]

the mean equal to αβ  e\alpha - \beta\;e, where ee is approximately 0.57720.5772 and the variance equal to β2π6\beta^2\frac{\pi}{6}. Its standardized version is obtained with α=6π  e\alpha = \frac{\sqrt{6}}{\pi}\;e and β=6π\beta = \frac{\sqrt{6}}{\pi}

Value

The value of the density.

Author(s)

Arnošt Komárek arnost.komarek@mff.cuni.cz

Examples

dextreme(1, (sqrt(6)/pi)*0.5772, sqrt(6)/pi)
dstextreme(1)        ## approximately same result as on the previous row

[Package smoothSurv version 2.6 Index]