View source: R/PackageOxygen.R
plot.hill | R Documentation |
Graphical representation of the hill estimator.
## S3 method for class 'hill'
plot(x, xaxis = "ranks", ...)
x |
output object of the function hill. |
xaxis |
either "ranks" or "xsort". |
... |
further arguments passed to or from other methods. |
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.
hill
x <- abs(rcauchy(100))
hh <- hill(x)
par(mfrow = c(2, 1))
plot(hh, xaxis = "ranks")
plot(hh, xaxis = "xsort")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.