-
Notifications
You must be signed in to change notification settings - Fork 85
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
[Feature]: add support for Gumbel Distribution #189
Comments
This could be useful. This distribution would probably need to implement the following traits
all methods seem like they should be based on closed form expressions, perhaps with considerations for numerical stability of
|
Since it wasn't straightforward to find the exponential distribution as |
Hi @YeungOnion I am new to Rust and would want to take a shot at this issue. Is it possible to work on adding Gumbel distribution? |
Absolutely! Feel free to ping me here for any help. Also, as you're new, I'd like to mention the Rust Language forum. For consistency, I request that the error type you create for this distribution should have an error message from
|
@YeungOnion I have a PR for this issue |
Closed by #285 |
Hey everyone! I have been using this library for quite a while now, and I noticed that It doesn't support some distribution functions like Exponential and Gumbel. I think one way to add support for missing distributions is by migrating from rand to rand_distr. What do you think?
Edit 1: I am thinking about a relationship between, for instance, Poisson and Exponential Distributions. Probably there is one and I can compute one from another. Know what I am saying?
Edit 2: Oh, wait! It is called Exp.
The text was updated successfully, but these errors were encountered: