-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ENH] Implement Histogram Conditional Density Estimation #322
Comments
@fkiraly Do you recommend any other resources to refer for implementing this? Also do I have to implement the |
Sure! Some classical ones:
This is mostly kernel based. Also, what is |
Its a type of kernel in It mostly resembles a bin itself. |
Oh, I see, the "top-hat kernel", which is the same as a box kernel. Here are a few things I noticed:
|
Describe the solution you'd like
Histogram estimation is not present in skpro. Implement them from scratch using the conditional density estimate finding the optimal binwidth(h) and find the function that fits the histograms most aptly without over smoothing nor undersmoothing.
Additional context
Useful resources
The text was updated successfully, but these errors were encountered: