├── .gitattributes ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Examples ├── AirPassengers.csv ├── Example_pyMannKendall.ipynb ├── daily-total-female-births.csv └── shampoo.csv ├── LICENSE.txt ├── MANIFEST.in ├── Paper ├── Hussain et al [2019] - pyMannKendall a python package for non parametric Mann Kendall family of trend tests.pdf ├── paper.bib └── paper.md ├── README.md ├── pymannkendall ├── __init__.py ├── _version.py └── pymannkendall.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_pymannkendall.py └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | pymannkendall/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Examples/AirPassengers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/Examples/AirPassengers.csv -------------------------------------------------------------------------------- /Examples/Example_pyMannKendall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/Examples/Example_pyMannKendall.ipynb -------------------------------------------------------------------------------- /Examples/daily-total-female-births.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/Examples/daily-total-female-births.csv -------------------------------------------------------------------------------- /Examples/shampoo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/Examples/shampoo.csv -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Paper/Hussain et al [2019] - pyMannKendall a python package for non parametric Mann Kendall family of trend tests.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/Paper/Hussain et al [2019] - pyMannKendall a python package for non parametric Mann Kendall family of trend tests.pdf -------------------------------------------------------------------------------- /Paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/Paper/paper.bib -------------------------------------------------------------------------------- /Paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/Paper/paper.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/README.md -------------------------------------------------------------------------------- /pymannkendall/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/pymannkendall/__init__.py -------------------------------------------------------------------------------- /pymannkendall/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/pymannkendall/_version.py -------------------------------------------------------------------------------- /pymannkendall/pymannkendall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/pymannkendall/pymannkendall.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | pytest -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_pymannkendall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/tests/test_pymannkendall.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder2cdb/pyMannKendall/HEAD/versioneer.py --------------------------------------------------------------------------------