statsmodels.nonparametric.kernel_density.KDEMultivariateConditional.imse¶
-
KDEMultivariateConditional.
imse
(bw)[source]¶ The integrated mean square error for the conditional KDE.
- Parameters
- bwarray_like
The bandwidth parameter(s).
- Returns
- CV
float
The cross-validation objective function.
- CV
Notes
For more details see pp. 156-166 in [1]. For details on how to handle the mixed variable types see [2].
The formula for the cross-validation objective function for mixed variable types is:
CV(h,λ)=1nn∑l=1G−l(Xl)[μ−l(Xl)]2−2nn∑l=1f−l(Xl,Yl)μ−l(Xl)where
G−l(Xl)=n−2∑i≠l∑j≠lKXi,XlKXj,XlK(2)Yi,Yjwhere KXi,Xl is the multivariate product kernel and μ−l(Xl) is the leave-one-out estimator of the pdf.
K(2)Yi,Yj is the convolution kernel.
The value of the function is minimized by the
_cv_ls
method of the GenericKDE class to return the bw estimates that minimize the distance between the estimated and “true” probability density.References