histo {benchden} | R Documentation |
Some properties of 4 histogram benchmark densities
Description
Name, position of modes, support and break points for the 4 histogram benchmark distributions from Rozenholc/Mildenberger/Gather (2010).
Usage
histo(dnum = 1)
Arguments
dnum |
number of distribution. |
Details
These functions implement the 4 histogram benchmark distributions from Rozenholc/Mildenberger/Gather (2010). Defined as the following mixtures of uniform distributions:
dnum == 1
5 bin regular histogram:
dnum == 2
5 bin irregular histogram:
dnum == 3
10 bin regular histogram:
dnum == 4
10 bin irregular histogram:
where denotes the uniform distribution on
.
Value
histo
returns a list with the following components:
name |
gives the name of the distribution. |
peaks |
gives a vector of the positions of peaks of the density, defined here as mid points of maximal intervals. |
support |
gives a matrix with one row with the endpoints of the support,
which is |
breaks |
gives the vector of break points. |
Author(s)
Thoralf Mildenberger
References
T. Mildenberger and H. Weinert, "The benchden Package: Benchmark Densities for Nonparametric Density Estimation", Journal of Statistical Software, vol. 46(14), 1-14, 2012. https://www.jstatsoft.org/v46/i14/
Y. Rozenholc, T. Mildenberger and U. Gather (2010), "Combining Regular and Irregular Histograms by Penalized Likelihood", Computational Statistics and Data Analysis, 54, 3313-3323. doi:10.1016/j.csda.2010.04.021 Earlier version including explicit definition of the densities: doi:10.17877/DE290R-15901
Examples
# position of peaks of the 5 bin irregular histogram density
histo(dnum=2)$peaks
# support of the 10 bin regular histogram density
histo(dnum=3)$support