I looked online and have not yet found an answer or a way to understand the following
I translated MATLAB code into Python, where in MATLAB im, to find the kernel density estimate using the function:
[p,x] = ksdensity(data)
where p is the probability at the point x in the distribution.
Scipy has a function, but returns p.
Is there any way to find probability with x values?
Thanks!
source share