-
Notifications
You must be signed in to change notification settings - Fork 108
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
Univariate | Scipy scaffolding #204
Comments
Thanks for the proposal @gbonomib This would be excellent, and in a way the current implementation tries to approach your proposal by making the integration of new
Having said that, if we find a way to deduce this information (or |
Hi @csala A very basic proof of concept: keep in mind that every
You can expose shapes argument with from
You can create your
If you fit a constant array by imposing
Is this really the strongest constraint? This condition on asymptoticity does not seem to be satisfied even for the univariate distributions already implemented in
yet - unless I am mistaken - when you try to fix a What one could do - as mentioned in 2. - is to enforce
You can define the boundaries of any distribution by inspecting
|
Hi all, I recognize this issue is over 2 years old now. The team is actively thinking about enabling this functionality for our users. We have a new issue #357 that we are using to track this. I'm linking issue so that we don't lose track of prior discussions as we figure out the best way to add this functionality -- and marking this as a duplicate. For any future discussions, please refer to #357. |
Hello guys,
I have noticed that many of the univariate distr of Copulas are wrappers around scipy implementation. This make sense as it allows to offload most of the maintenance duties to the scipy devs. I am thinking whether it is appropriate to write some kind of wrapper to bulk-import all/an opinionated subset of continuos probability distribution from scipy (in order not to have to re-write a wrapper for every single univariate distr we want to include into Copulas).
Note that all scipy continuous distribution inherits the
rv_continuos
class which automagically implements many useful methods, including fitting (fit
) and sampling (rvs
). In addition, all the scipy distribution are re-parametrized as location-scale family, which is convenient for tractability.This change would have the benefit of getting ""for free"" new univariate distributions as they are released in scipy
I can have a look into that, let me know if this also make sense to you.
Cheers
gab
The text was updated successfully, but these errors were encountered: