HirukawaJLNKernel | R Documentation |
"HirukawaJLNKernel"
This class deals with the JLN Kernel estimator as described in Hirukawa (2010). The kernel estimator is computed using the provided data samples. Using this kernel estimator, the methods implemented in the class can be used to compute densities, values of the distribution function, quantiles, sample the distribution and obtain graphical representations.
Objects can be created by using the generator function hirukawaJLNKernel
.
dataPointsCache
:a numeric vector containing points within the [lower.limit,upper.limit]
interval
densityCache
:a numeric vector containing the density for each point in dataPointsCache
distributionCache
:a numeric vector used to cache the values of the distribution function. This slot is included to improve the performance of the methods when multiple calculations of the distribution function are used
dataPoints
:a numeric vector containing data samples within the [lower.limit,upper.limit]
interval. These data samples are used to obtain the kernel estimator
b
:the bandwidth of the kernel estimator
modified
:if TRUE
, the modified version of the kernel estimator is used
lower.limit
:a numeric value for the lower limit of the bounded interval for the data
upper.limit
:a numeric value for the upper limit of the bounded interval for the data
See "density"
for details
See "distribution"
for details
See "quantile"
for details
See "rsample"
for details
See "plot"
for details
See "getdataPointsCache"
for details
See "getdensityCache"
for details
See "getdistributionCache"
for details
See "getdataPoints"
for details
See "getb"
for details
See "getmodified"
for details
Guzman Santafe, Borja Calvo and Aritz Perez
Hirukawa, M. (2010). Nonparametric multiplicative bias correction for kernel-type density estimation on the unit interval. Computational Statistics & Data Analysis, 54(2), 473-495.
# create the model kernel.noModified <- hirukawaJLNKernel(dataPoints = tuna.r, b = 0.01, modified = FALSE) kernel.Modified <- hirukawaJLNKernel(dataPoints = tuna.r, b = 0.01, modified = TRUE) # examples of usual functions density(kernel.noModified,0.5) density(kernel.Modified,0.5) distribution(kernel.noModified,1,discreteApproximation=FALSE) distribution(kernel.noModified,1,discreteApproximation=TRUE) distribution(kernel.Modified,1,discreteApproximation=FALSE) distribution(kernel.Modified,1,discreteApproximation=TRUE) # graphical representation hist(tuna.r,freq=FALSE,main="Chen99 Kernels Tuna Data") lines(kernel.noModified, col="red",lwd=2) lines(kernel.Modified,col="blue",lwd=2) # graphical representation using ggplot2 graph <- gplot(list("noModified"=kernel.noModified, "modified"=kernel.Modified), show=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.