I hope to obtain a approximated distribution function from list, counting exsiting times of each element. Is there any package can achieve this?
In mathematica, function SmoothKernelDistribution (in Wolfram document, it is done by linear interpolation) could do this. For example:
I have tried kde and pdf in KernelDensity, but the result is not as good as mathematica. And I hope not only for normal distribution, but for any unknown type of distribution approximated by interpolation.
KernelDensity.jl should be using basically the exact same defaults as the defaults in that Mathematica function. I would be surprised if the results were noticeably any different for samples of that size (1000+ points).
You are right. I hope to fit a distribution from data. In this simple example, it works for normal distribution. I need a general fit for any type of data.