RustPython / RustPython Public
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
Add _statistics module containing _normal_dist_inv_cdf
#3251
Labels
good first issue
Good for newcomers
Comments
|
Basic scaffold for the module (to be placed in pub(crate) use _statistics::make_module;
#[pymodule]
mod _statistics {
#[pyfunction]
fn _normal_dist_inv_cdf(...) {}
}it then needs to be exported in |
aDotInTheVoid
added a commit
to aDotInTheVoid/RustPython
that referenced
this issue
Oct 8, 2021
_statistics module containing _normal_dist_inv_cd_statistics module containing _normal_dist_inv_cdf
|
@youknowone Now that #3552 is merged, can this be closed? |
|
So this is no longer necessary since the merge mentioned above right? |
youknowone
pushed a commit
to aDotInTheVoid/RustPython
that referenced
this issue
Apr 20, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


This should be relatively easy.
_statisticsneeds to be defined as a built-in module and_normal_dist_inv_cdfshould be added as its sole function._normal_dist_inv_cdfis pretty straight-forward to implement with the C version being a pretty direct translation from the Python version.The text was updated successfully, but these errors were encountered: