plot.hill: Hill plot

Description Usage Arguments Details See Also Examples

Description

Graphical representation of the hill estimator.

Usage

1
2
## S3 method for class 'hill'
plot(x, xaxis = "ranks", ...)

Arguments

x

output object of the function hill.

xaxis

either "ranks" or "xsort".

...

further arguments passed to or from other methods.

Details

If xaxis="ranks", the function draws the Hill estimators for each ranks of the grid output of the function hill. If xaxis="xsort", the function draws the Hill estimators for each data of the grid output of the function hill.

See Also

hill

Examples

1
2
3
4
5
x <- abs(rcauchy(100))
hh <- hill(x)
par(mfrow = c(2, 1))
plot(hh, xaxis = "ranks")
plot(hh, xaxis = "xsort")

extremefit documentation built on May 6, 2019, 1:10 a.m.