Calculate the gaussian kernel density in python

726 views Asked by At

I have a list of integer, what is the best way to calculate the gaussian kernel density in python? Library?

1

There are 1 answers

0
Ahmed Fasih On BEST ANSWER

Dr Vanderplas has written a blog post detailing how to do this with three separate libraries: Kernel Density Estimation in Python:

  • Scipy,
  • Statsmodels, and
  • scikit-learn.

Should be a good start.