forked from Bears-R-Us/arkouda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…rs-R-Us#3180) * Closes Bears-R-Us#3167: Add `normal` to random number generators This PR (closes Bears-R-Us#3167) adds `normal` to our generators by transforming the results of standard normal. It also upddates `standard_normal` to use generators ot make sure we have the same multiple calls of the same function give different output as the other rand funcs. Adds goodness of fit testing against scipy to ensure we are actually drawing from the correct distribution * add docs for random functions and deps to yaml files * leftover latex preventing display in usage --------- Co-authored-by: Tess Hayes <[email protected]>
- Loading branch information
1 parent
01bfe3f
commit af41bb8
Showing
7 changed files
with
255 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,50 @@ | ||
name: arkouda-dev | ||
channels: | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- python>=3.8 # minimum 3.8 | ||
- numpy>=1.24.1 | ||
- pandas>=1.4.0,!=2.2.0 | ||
- pyzmq>=20.0.0 | ||
- tabulate | ||
- pyfiglet | ||
- versioneer | ||
- matplotlib>=3.3.2 | ||
- h5py>=3.7.0 | ||
- hdf5==1.12.2 | ||
- pip | ||
- types-tabulate | ||
- pytables>=3.7.0 | ||
- pyarrow | ||
- libiconv | ||
- libidn2 | ||
- jupyter | ||
- scipy | ||
|
||
# Developer dependencies | ||
- pexpect | ||
- pytest>=6.0 | ||
- pytest-env | ||
- Sphinx>=5.1.1 | ||
- sphinx-argparse | ||
- sphinx-autoapi | ||
- typed-ast | ||
- flake8 | ||
- mypy>=0.931,<0.990 | ||
- black | ||
- isort | ||
- pytest-json-report | ||
- pytest-benchmark | ||
|
||
- pip: | ||
# Developer dependencies | ||
- typeguard==2.10.0 | ||
- furo # sphinx theme | ||
- myst-parser | ||
- linkify-it-py | ||
|
||
name: arkouda-dev | ||
channels: | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- python>=3.8 # minimum 3.8 | ||
- numpy>=1.24.1 | ||
- pandas>=1.4.0,!=2.2.0 | ||
- pyzmq>=20.0.0 | ||
- tabulate | ||
- pyfiglet | ||
- versioneer | ||
- matplotlib>=3.3.2 | ||
- h5py>=3.7.0 | ||
- hdf5==1.12.2 | ||
- pip | ||
- types-tabulate | ||
- pytables>=3.7.0 | ||
- pyarrow | ||
- libiconv | ||
- libidn2 | ||
- jupyter | ||
- scipy | ||
|
||
# Developer dependencies | ||
- pexpect | ||
- pytest>=6.0 | ||
- pytest-env | ||
- Sphinx>=5.1.1 | ||
- sphinx-argparse | ||
- sphinx-autoapi | ||
- sphinx-design | ||
- sphinx-autodoc-typehints | ||
- typed-ast | ||
- flake8 | ||
- mypy>=0.931,<0.990 | ||
- black | ||
- isort | ||
- pytest-json-report | ||
- pytest-benchmark | ||
- mathjax | ||
|
||
- pip: | ||
# Developer dependencies | ||
- typeguard==2.10.0 | ||
- furo # sphinx theme | ||
- myst-parser | ||
- linkify-it-py | ||
- sphinx-autopackagesummary | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.