├── .DS_Store ├── Dependent function ├── ar.m ├── armax.m ├── autocorr.m ├── iddata.m ├── parcorr.m └── predict.m ├── Model ├── AR model.m ├── ARIMA model.m ├── ARMA model.m └── MA model.m ├── bfast-master ├── DESCRIPTION ├── MD5 ├── NAMESPACE ├── NEWS ├── R │ ├── bfast.R │ ├── bfast01.R │ ├── bfast01classify.R │ ├── bfastmonitor.R │ ├── bfastpp.R │ ├── bfastts.R │ ├── create16dayts.R │ ├── history_break.R │ ├── history_roc.R │ ├── plot.bfast.R │ ├── plot.bfastmonitor.R │ ├── print.bfast.R │ ├── print.bfastmonitor.R │ └── seasonal.R ├── data │ ├── harvest.rda │ ├── ndvi.rda │ ├── simts.rda │ ├── som.rda │ └── somaliadat.rda ├── inst │ ├── CITATION │ └── extdata │ │ ├── modisraster.grd │ │ └── modisraster.gri └── man │ ├── bfast-package.rd │ ├── bfast.Rd │ ├── bfast01.Rd │ ├── bfast01classify.Rd │ ├── bfastmonitor.Rd │ ├── bfastpp.Rd │ ├── bfastts.Rd │ ├── create16dayts.Rd │ ├── dates.Rd │ ├── harvest.Rd │ ├── modisraster.Rd │ ├── ndvi.Rd │ ├── plot.bfast.Rd │ ├── simts.Rd │ └── som.Rd ├── data.mat ├── pyMannKendall-master ├── .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 └── readme.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/.DS_Store -------------------------------------------------------------------------------- /Dependent function/ar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/Dependent function/ar.m -------------------------------------------------------------------------------- /Dependent function/armax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/Dependent function/armax.m -------------------------------------------------------------------------------- /Dependent function/autocorr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/Dependent function/autocorr.m -------------------------------------------------------------------------------- /Dependent function/iddata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/Dependent function/iddata.m -------------------------------------------------------------------------------- /Dependent function/parcorr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/Dependent function/parcorr.m -------------------------------------------------------------------------------- /Dependent function/predict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/Dependent function/predict.m -------------------------------------------------------------------------------- /Model/AR model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/Model/AR model.m -------------------------------------------------------------------------------- /Model/ARIMA model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/Model/ARIMA model.m -------------------------------------------------------------------------------- /Model/ARMA model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/Model/ARMA model.m -------------------------------------------------------------------------------- /Model/MA model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/Model/MA model.m -------------------------------------------------------------------------------- /bfast-master/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/DESCRIPTION -------------------------------------------------------------------------------- /bfast-master/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/MD5 -------------------------------------------------------------------------------- /bfast-master/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/NAMESPACE -------------------------------------------------------------------------------- /bfast-master/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/NEWS -------------------------------------------------------------------------------- /bfast-master/R/bfast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/bfast.R -------------------------------------------------------------------------------- /bfast-master/R/bfast01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/bfast01.R -------------------------------------------------------------------------------- /bfast-master/R/bfast01classify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/bfast01classify.R -------------------------------------------------------------------------------- /bfast-master/R/bfastmonitor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/bfastmonitor.R -------------------------------------------------------------------------------- /bfast-master/R/bfastpp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/bfastpp.R -------------------------------------------------------------------------------- /bfast-master/R/bfastts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/bfastts.R -------------------------------------------------------------------------------- /bfast-master/R/create16dayts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/create16dayts.R -------------------------------------------------------------------------------- /bfast-master/R/history_break.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/history_break.R -------------------------------------------------------------------------------- /bfast-master/R/history_roc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/history_roc.R -------------------------------------------------------------------------------- /bfast-master/R/plot.bfast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/plot.bfast.R -------------------------------------------------------------------------------- /bfast-master/R/plot.bfastmonitor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/plot.bfastmonitor.R -------------------------------------------------------------------------------- /bfast-master/R/print.bfast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/print.bfast.R -------------------------------------------------------------------------------- /bfast-master/R/print.bfastmonitor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/print.bfastmonitor.R -------------------------------------------------------------------------------- /bfast-master/R/seasonal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/R/seasonal.R -------------------------------------------------------------------------------- /bfast-master/data/harvest.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/data/harvest.rda -------------------------------------------------------------------------------- /bfast-master/data/ndvi.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/data/ndvi.rda -------------------------------------------------------------------------------- /bfast-master/data/simts.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/data/simts.rda -------------------------------------------------------------------------------- /bfast-master/data/som.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/data/som.rda -------------------------------------------------------------------------------- /bfast-master/data/somaliadat.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/data/somaliadat.rda -------------------------------------------------------------------------------- /bfast-master/inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/inst/CITATION -------------------------------------------------------------------------------- /bfast-master/inst/extdata/modisraster.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/inst/extdata/modisraster.grd -------------------------------------------------------------------------------- /bfast-master/inst/extdata/modisraster.gri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/inst/extdata/modisraster.gri -------------------------------------------------------------------------------- /bfast-master/man/bfast-package.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/bfast-package.rd -------------------------------------------------------------------------------- /bfast-master/man/bfast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/bfast.Rd -------------------------------------------------------------------------------- /bfast-master/man/bfast01.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/bfast01.Rd -------------------------------------------------------------------------------- /bfast-master/man/bfast01classify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/bfast01classify.Rd -------------------------------------------------------------------------------- /bfast-master/man/bfastmonitor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/bfastmonitor.Rd -------------------------------------------------------------------------------- /bfast-master/man/bfastpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/bfastpp.Rd -------------------------------------------------------------------------------- /bfast-master/man/bfastts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/bfastts.Rd -------------------------------------------------------------------------------- /bfast-master/man/create16dayts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/create16dayts.Rd -------------------------------------------------------------------------------- /bfast-master/man/dates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/dates.Rd -------------------------------------------------------------------------------- /bfast-master/man/harvest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/harvest.Rd -------------------------------------------------------------------------------- /bfast-master/man/modisraster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/modisraster.Rd -------------------------------------------------------------------------------- /bfast-master/man/ndvi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/ndvi.Rd -------------------------------------------------------------------------------- /bfast-master/man/plot.bfast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/plot.bfast.Rd -------------------------------------------------------------------------------- /bfast-master/man/simts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/simts.Rd -------------------------------------------------------------------------------- /bfast-master/man/som.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/bfast-master/man/som.Rd -------------------------------------------------------------------------------- /data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/data.mat -------------------------------------------------------------------------------- /pyMannKendall-master/.gitattributes: -------------------------------------------------------------------------------- 1 | pymannkendall/_version.py export-subst 2 | -------------------------------------------------------------------------------- /pyMannKendall-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/.gitignore -------------------------------------------------------------------------------- /pyMannKendall-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/.travis.yml -------------------------------------------------------------------------------- /pyMannKendall-master/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /pyMannKendall-master/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/CONTRIBUTING.md -------------------------------------------------------------------------------- /pyMannKendall-master/Examples/AirPassengers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/Examples/AirPassengers.csv -------------------------------------------------------------------------------- /pyMannKendall-master/Examples/Example_pyMannKendall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/Examples/Example_pyMannKendall.ipynb -------------------------------------------------------------------------------- /pyMannKendall-master/Examples/daily-total-female-births.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/Examples/daily-total-female-births.csv -------------------------------------------------------------------------------- /pyMannKendall-master/Examples/shampoo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/Examples/shampoo.csv -------------------------------------------------------------------------------- /pyMannKendall-master/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/LICENSE.txt -------------------------------------------------------------------------------- /pyMannKendall-master/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/MANIFEST.in -------------------------------------------------------------------------------- /pyMannKendall-master/Paper/Hussain et al [2019] - pyMannKendall a python package for non parametric Mann Kendall family of trend tests.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/Paper/Hussain et al [2019] - pyMannKendall a python package for non parametric Mann Kendall family of trend tests.pdf -------------------------------------------------------------------------------- /pyMannKendall-master/Paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/Paper/paper.bib -------------------------------------------------------------------------------- /pyMannKendall-master/Paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/Paper/paper.md -------------------------------------------------------------------------------- /pyMannKendall-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/README.md -------------------------------------------------------------------------------- /pyMannKendall-master/pymannkendall/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/pymannkendall/__init__.py -------------------------------------------------------------------------------- /pyMannKendall-master/pymannkendall/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/pymannkendall/_version.py -------------------------------------------------------------------------------- /pyMannKendall-master/pymannkendall/pymannkendall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/pymannkendall/pymannkendall.py -------------------------------------------------------------------------------- /pyMannKendall-master/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | pytest -------------------------------------------------------------------------------- /pyMannKendall-master/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/setup.cfg -------------------------------------------------------------------------------- /pyMannKendall-master/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/setup.py -------------------------------------------------------------------------------- /pyMannKendall-master/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyMannKendall-master/tests/test_pymannkendall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/tests/test_pymannkendall.py -------------------------------------------------------------------------------- /pyMannKendall-master/versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/pyMannKendall-master/versioneer.py -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Three-Poles/Time-series-analysis/HEAD/readme.txt --------------------------------------------------------------------------------