View source: R/default-gen-dens.R
dens | R Documentation |
dens
is a generic function used to plot the density.
The function invokes particular methods
which depend on the class
of the first argument.
So the function plots density for univariate POT models.
dens(object, ...)
## S3 method for class 'uvpot'
dens(object, main, xlab, ylab, dens.adj = 1,
kern.lty = 2, rug = TRUE, plot.kernel = TRUE, plot.hist = TRUE,
hist.col = NULL, ...)
object |
A fitted object. When using the POT package, an object
of class |
main |
The title of the graphic. If missing, the title is set to
|
xlab , ylab |
The labels for the x and y axis. If missing, they are
set to |
dens.adj |
Numeric. The adjustment for the kernel density
estimation in the |
kern.lty |
The line type for the kernel density estimation. This
corresponds to the |
rug |
Logical. Should we call the |
plot.kernel |
Logical. Should the kernel density estimate be plotted? |
plot.hist |
Logical. Should the histogram be plotted? |
hist.col |
The color to fill the histogram. |
... |
Other arguments to be passed to the |
The density plot consists of plotting on the same windows the theoretical density and a kernel estimation one. If the theoretical model is correct, then the two densities should be “similar”.
A graphical window.
Mathieu Ribatet
dens
, dens.uvpot
x <- rgpd(75, 1, 2, 0.1)
pwmu <- fitgpd(x, 1, "pwmu")
dens(pwmu)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.