JuliaStats / Distributions.jl

A Julia package for probability distributions and associated functions.
Other
1.1k stars 413 forks source link

Move KDE to Stats.jl #168

Closed lindahua closed 10 years ago

lindahua commented 10 years ago

I am in the process of doing some refactoring of the Stats.jl package.

kernel density estimation is mostly data statistics. It does not directly related to a parametric distribution.

Therefore, I think Stats.jl might be a more appropriate place for it. (Like the ecdf function that is in Stats).

cc: @johnmyleswhite

johnmyleswhite commented 10 years ago

I'm alright with that. We put it in here originally because we thought we would use the characteristic function of distributions to allow different kernels. Since we hardcoded a Gaussian kernel, it seems reasonable to move this to Stats.jl.

lindahua commented 10 years ago

Implemented by b4ecede

johnmyleswhite commented 10 years ago

Thanks for doing this!