Nadaraya andWatson, both in 1964, proposed to estimate as a locally weighted average, using akernel as a weighting function.[1][2][3] The Nadaraya–Watson estimator is:
where is a kernel with a bandwidth such that is of order at least 1, that is.
This example is based upon Canadian cross-section wage data consisting of a random sample taken from the 1971 Canadian Census Public Use Tapes for male individuals having common education (grade 13). There are 205 observations in total.[citation needed]
The figure to the right shows the estimated regression function using a second order Gaussian kernel along with asymptotic variability bounds.
The following commands of theR programming language use thenpreg() function to deliver optimal smoothing and to create the figure given above. These commands can be entered at the command prompt via cut and paste.
install.packages("np")library(np)# non parametric librarydata(cps71)attach(cps71)m<-npreg(logwage~age)plot(m,plot.errors.method="asymptotic",plot.errors.style="band",ylim=c(11,15.2))points(age,logwage,cex=.25)detach(cps71)
According toDavid Salsburg, the algorithms used in kernel regression were independently developed and used infuzzy systems: "Coming up with almost exactly the same computer algorithm, fuzzy systems and kernel density-based regressions appear to have been developed completely independently of one another."[5]
MATLAB: A free MATLAB toolbox with implementation of kernel regression, kernel density estimation, kernel estimation of hazard function and many others is available onthese pages (this toolbox is a part of the book[6]).