0

2

Kernel density estimator is given by $$\hat{f}(x,h)=\frac{1}{nh}\sum_{i=1}^{n}K(\frac{x-X_{i}}{h})$$ where $X_1,...X_n$ i.i.d with some unknown density $f$, $h$ - bandwith,

$K$ - kernel function ( $\int_{-\infty}^{\infty}K(x)dx=1$, $\int_{-\infty}^{\infty}K(x)xdx=0$, $\int_{-\infty}^{\infty}K(x)x^2dx<\infty$). The bias can be computed using Taylor expansion: $$\int_{-\infty}^{\infty}\frac{1}{h}K(\frac{x-y}{h})f(y)dy-f(x)=\int_{-\infty}^{\infty}K(y)\left(f(x-hy)-f(x)\right)dy$$ $$=\int_{-\infty}^{\infty}K(y)\left(f'(x)hy+\frac{1}{2}f''(x)(hy)^{2}+o(h^{2})\right)dy=\frac{1}{2}f''(x)h^{2}+o(h^{2})$$

How to deal with periodic kernel and $f$ ($\int_{0}^{1}K(x)dx=1$,$\int_{0}^{1}K(x)xdx=0$,$\int_{0}^{1}K(x)x^2dx<\infty$)?

How can I use Taylor expansion?($\int_{0}^{1}\frac{1}{h}K(\frac{y-x}{h})f(y)dy=\int_{-\frac{x}{h}}^{1-\frac{x}{h}}K(y)f(x-yh)dy\neq\int_{0}^{1}K(y)f(x-yh)dy$ -I can't use kernel properties)

Could you recommend a good book about kernel smoothing for circular data?

flag
1 
if you know $f$ is periodic and if you know the period, then you should try to get one estimate per period and average everything to get your final estimation ? – robin girard Nov 30 2010 at 16:11

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.