KernelDensity.jl icon indicating copy to clipboard operation
KernelDensity.jl copied to clipboard

Kernel density estimators for Julia

Results 37 KernelDensity.jl issues
Sort by recently updated
recently updated
newest added

Generally I find the [GetDist](https://getdist.readthedocs.io/en/latest/intro.html) Python package based on [this](https://arxiv.org/abs/1910.13970) paper does a much better job producing accurate contours than this one, in particular for close-to-Gaussian distributions and especialy with...

When I use the following method `pdf(k::BivariateKDE, x, y)` on two lists of size N I get an NxN matrix of values. Is there a way to tell pdf to...

Hello, I'm trying to use LogNormal as kernel, but it is not supported by this package. The main problem seems to be `cf` does not support LogNormal. The docs say...

I created a new function that returns the bandwidth found from kde_lscv.

Hello, I was searching for a Kernel Density estimation in 3D. I think it could be nice to implement the following method from Zdravko Botev et al. in Julia. Botev,...

**tl;dr** if you use many threads, running `FFTW.set_num_threads(1)` can be a good idea. Otherwise [FFTW](https://github.com/JuliaMath/FFTW.jl/) probably slows down computation and prevents outer parallelism. I suggest adding it to the README....

this is the only change that is necessary to make kdes differentiable. All changes proposed in #77 are now patches contained in `https://github.com/gszep/FluxContinuation/blob/master/patches/KernelDensity.jl`

In Julia 1.2, within the ordinary REPL (not atom) ``` (v1.2) pkg> add KernelDensity Resolving package versions... ERROR: Unsatisfiable requirements detected for package KernelDensity [5ab0869b]: KernelDensity [5ab0869b] log: ├─possible versions...

I've encountered the following error message when I try to install KernelDensity.jl. Not sure if this is best addressed here or at Atom ``` (v1.1) pkg> add KernelDensity.jl Updating registry...

some of the code seems to use deprecated commands, I get these warnings: ```julia julia> using KernelDensity julia> data=randn(1000); julia> y=kde(data); julia> pdf(y,.5) ┌ Warning: interpolate(A, BSpline(Quadratic(Line())), Interpolations.OnGrid()) is deprecated,...