kdbwselect
implements bandwidth selectors for kernel density point estimators and inference procedures developed in Calonico, Cattaneo and Farrell (2018). See also Calonico, Cattaneo and Farrell (2020) for related optimality results.
It also implements other bandwidth selectors available in the literature. See Wand and Jones (1995) for background references.
Companion commands are: kdrobust
for kernel density point estimation and inference procedures.
A detailed introduction to this command is given in Calonico, Cattaneo and Farrell (2019). For more details, and related Stata and R packages useful for empirical analysis, visit https://nppackages.github.io/.
kdbwselect(x, eval = NULL, neval = NULL, kernel = "epa",
bwselect = "mse-dpi", bwcheck=21, imsegrid=30, subset = NULL)
independent variable.
vector of evaluation point(s). By default it uses 30 equally spaced points over to support of x
.
number of quantile-spaced evaluation points on support of x
. Default is neval=30
.
kernel function used to construct the kernel estimators. Options are epa
for the epanechnikov kernel, and uni
for the uniform kernel. Default is kernel = epa
.
bandwidth selection procedure to be used. Options are:
mse-dpi
second-generation DPI implementation of MSE-optimal bandwidth. Default option.
imse-dpi
second-generation DPI implementation of IMSE-optimal bandwidth (computed using grid of evaluation points selected).
imse-rot
ROT implementation of IMSE-optimal bandwidth (computed using grid of evaluation points selected).
ce-dpi
second generation DPI implementation of CE-optimal bandwidth.
ce-rot
ROT implementation of CE-optimal bandwidth.
all
reports all available bandwidth selection procedures.
Note: MSE = Mean Square Error; IMSE = Integrated Mean Squared Error; CE = Coverage Error; DPI = Direct Plug-in; ROT = Rule-of-Thumb. For details on implementation see Calonico, Cattaneo and Farrell (2019).
if a positive integer is provided, then the selected bandwidth is enlarged so that at least bwcheck
effective observations are available at each evaluation point. Default is bwcheck = 15
.
number of evaluations points used to compute the IMSE bandwidth selector. Default is imsegrid = 30
.
optional rule specifying a subset of observations to be used.
A matrix containing eval
(grid points), h
and b
(bandwidths).
A list containing options passed to the function.
Calonico, S., M. D. Cattaneo, and M. H. Farrell. 2018. On the Effect of Bias Estimation on Coverage Accuracy in Nonparametric Inference. Journal of the American Statistical Association, 113(522): 767-779. doi:10.1080/01621459.2017.1285776.
Calonico, S., M. D. Cattaneo, and M. H. Farrell. 2019. nprobust: Nonparametric Kernel-Based Estimation and Robust Bias-Corrected Inference. Journal of Statistical Software, 91(8). doi:10.18637/jss.v091.i08.
Calonico, S., M. D. Cattaneo, and M. H. Farrell. 2020. Coverage Error Optimal Confidence Intervals for Local Polynomial Regression. Working Paper.
Fan, J., and Gijbels, I. 1996. Local polynomial modelling and its applications, London: Chapman and Hall.
Wand, M., and Jones, M. 1995. Kernel Smoothing, Florida: Chapman & Hall/CRC.
# NOT RUN {
x <- rnorm(500)
est <- kdbwselect(x)
summary(est)
# }
Run the code above in your browser using DataLab