How Does The Stats.gaussian_kde Method Calcute The Pdf?
I am using the scipy.stats.gaussian_kde method from scipy to generate random samples from the data. It works fine! What I have now found out is that the method also has inbuilt fun
Solution 1:
The online docs have a link to the source code, which for gaussian_kde
is here: https://github.com/scipy/scipy/blob/v0.15.1/scipy/stats/kde.py#L193
Post a Comment for "How Does The Stats.gaussian_kde Method Calcute The Pdf?"