Miscellaneous methods for data science and astronomy
Project description
nmmn
package
Tools for astronomy, data analysis, time series, numerical simulations, gamma-ray astronomy and more! These are modules I wrote which I find useful—for whatever reason—in my research.
List of modules available (more info here):
astro
: astronomydsp
: signal processinglsd
: misc. operations on arrays, lists, dictionaries and setsstats
: statistical methodssed
: spectral energy distributionsplots
: custom plotsfermi
: Fermi LAT analysis methodsbayes
: Bayesian tools for dealing with posterior distributionsgrmhd
: tools for dealing with GRMHD numerical simulations
Very basic documentation for the package. Generated with Sphinx.
Installation
You have a couple of options to install the module:
1. Install using pip
:
pip install nmmn
2. Install the module on the system’s python library path:
git clone https://github.com/rsnemmen/nmmn.git
cd nmmn
python setup.py install
3. Install the package with a symlink, so that changes to the source files will be immediately available:
git clone https://github.com/rsnemmen/nmmn.git
cd nmmn
python setup.py develop
This last method is preferred if you want the latest, bleeding-edge updates in the repo. You may need to run the last command with sudo
.
Updating
If you installed with pip
(method 1), to upgrade the package to the latest stable version use
pip install --upgrade nmmn
If you installed with the setup.py
script and the develop
option (method 3), use
cd /path/to/nmmn
git pull
Usage
First import the specific module that you want to use:
import nmmn.lsd
Then call the method you need. For example, to remove all nan
and inf
elements from a numpy
array:
import numpy as np
# generates some array with nan and inf
x=np.array([1,2,np.nan,np.inf])
# removes strange elements
xok=nmmn.lsd.delweird(x)
For more examples, please refer to the examples doc.
TODO
- need more examples of how to use the modules
- add IFU data cubes method (refer to ifscube)
License
See LICENSE
file.
If you have suggestions of improvements, by all means please contribute with a pull request! :)
The MIT License (MIT). Copyright (c) 2020 Rodrigo Nemmen
Visit the author's web page and/or follow him on twitter (@nemmen).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nmmn-1.3.6.tar.gz
.
File metadata
- Download URL: nmmn-1.3.6.tar.gz
- Upload date:
- Size: 77.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8d08e5aef0b608298e506aa6182bf1b7b2f944450a23835b59960b3033a93fa |
|
MD5 | 1b352f8c7a71fc39c3f2e2066ee0ffd8 |
|
BLAKE2b-256 | 259add1b528bcfb17a12ec125a9444e6eb92bf46866282df414555e8b27b1848 |
File details
Details for the file nmmn-1.3.6-py3-none-any.whl
.
File metadata
- Download URL: nmmn-1.3.6-py3-none-any.whl
- Upload date:
- Size: 80.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3e1833a5b38360a54f9334bbbc2e8db2f46643613d5a912755d1e7a1dba4525 |
|
MD5 | d5c1197124c872cc9dcc40a0552ba5c5 |
|
BLAKE2b-256 | 7d3659c50966ed9d500251abee9ab7c1653c9cd711d903c3c18ab576193a0ddd |