https://github.com/benmaier/parmscan
Provide tools to plot parameter scan results that are wrapped up in a high-dimensional numpy array
https://github.com/benmaier/parmscan
Last synced: 3 months ago
JSON representation
Provide tools to plot parameter scan results that are wrapped up in a high-dimensional numpy array
- Host: GitHub
- URL: https://github.com/benmaier/parmscan
- Owner: benmaier
- License: mit
- Created: 2022-01-12T13:05:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-08T23:28:07.000Z (over 3 years ago)
- Last Synced: 2024-10-11T11:06:26.739Z (8 months ago)
- Language: Python
- Size: 3.91 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README

# parmscan
Provide tools to plot parameter scan results that are wrapped up in a high-dimensional numpy array
* repository: https://github.com/benmaier/parmscan/
* documentation: http://parmscan.benmaier.org/## Install
pip install parmscan
`parmscan` was developed and tested for
* Python 3.7
* Python 3.8So far, the package's functionality was tested on Mac OS X and CentOS only.
## Dependencies
`parmscan` directly depends on the following packages which will be installed by `pip` during the installation process
* `numpy>=1.17`
## Documentation
The full documentation is available at [parmscan.benmaier.org](http://parmscan.benmaier.org).
## Changelog
Changes are logged in a [separate file](https://github.com/benmaier/parmscan/blob/main/CHANGELOG.md).
## License
This project is licensed under the [MIT License](https://github.com/benmaier/parmscan/blob/main/LICENSE).
Note that this excludes any images/pictures/figures shown here or in the documentation.## Contributing
If you want to contribute to this project, please make sure to read the [code of conduct](https://github.com/benmaier/parmscan/blob/main/CODE_OF_CONDUCT.md) and the [contributing guidelines](https://github.com/benmaier/parmscan/blob/main/CONTRIBUTING.md). In case you're wondering about what to contribute, we're always collecting ideas of what we want to implement next in the [outlook notes](https://github.com/benmaier/parmscan/blob/main/OUTLOOK.md).
[](code-of-conduct.md)
## Dev notes
Fork this repository, clone it, and install it in dev mode.
```bash
git clone [email protected]:YOURUSERNAME/parmscan.git
make
```If you want to upload to PyPI, first convert the new `README.md` to `README.rst`
```bash
make readme
```It will give you warnings about bad `.rst`-syntax. Fix those errors in `README.rst`. Then wrap the whole thing
```bash
make pypi
```It will probably give you more warnings about `.rst`-syntax. Fix those until the warnings disappear. Then do
```bash
make upload
```