KDE | R Documentation |
Turns a vector of numbers into an object of class KDE
using
a combination of the Botev (2010) bandwidth selector and the
Abramson (1982) adaptive kernel bandwidth modifier.
KDE(x, from = NA, to = NA, bw = NA, adaptive = TRUE, log = FALSE, n = 512, ...)
x |
a vector of numbers |
from |
minimum age of the time axis. If |
to |
maximum age of the time axis. If |
bw |
the bandwidth of the KDE. If NULL, |
adaptive |
boolean flag controlling if the adaptive KDE modifier of Abramson (1982) is used |
log |
transform the ages to a log scale if |
n |
horizontal resolution of the density estimate |
... |
optional arguments to be passed on to |
an object of class KDE
, i.e. a list containing the
following items:
x
: horizontal plot coordinates
y
: vertical plot coordinates
bw
: the base bandwidth of the density estimate
ages
: the data values from the input to the KDE
function
KDEs
data(Namib)
samp <- Namib$DZ$x[['N1']]
dens <- KDE(samp,0,3000,kernel="epanechnikov")
plot(dens)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.