We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some distributions have this (like Exp), but others (like LogNormal) don't.
Exp
LogNormal
for example:
impl LogNormal { pub fn location(&self)->f64 { self.location } pub fn scale(&self)->f64 { self.scale } }
this will make it far easier to interoperate these distributions in a variety of ways.
The text was updated successfully, but these errors were encountered:
Those without parameter getters
Sorry, something went wrong.
I'd like to contribute by adding this feature. Any important guidelines or considerations before I start?
Hi, thanks for finding a place to contribute!
Some considerations; I believe they are relevant mostly to the multivariate distributions (we may not have consistency on these yet):
get
Copy
No branches or pull requests
Some distributions have this (like
Exp
), but others (likeLogNormal
) don't.for example:
this will make it far easier to interoperate these distributions in a variety of ways.
The text was updated successfully, but these errors were encountered: