├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── code ├── .pylintrc ├── Makefile ├── README.md ├── mypackage │ ├── __init__.py │ ├── io.py │ └── processing.py ├── notebooks │ ├── estimate-hawaii-trend.ipynb │ └── figure-hawaii-trend.ipynb ├── run_notebook.sh ├── setup.py └── tests │ ├── test_io.py │ └── test_processing.py ├── data ├── README.md └── hawaii-TAVG-Trend.txt ├── environment.yml ├── manuscript ├── Makefile ├── README.md ├── figures │ ├── hawaii-trend.eps │ └── hawaii-trend.png ├── hawaii_trend.tex ├── manuscript.tex └── references.bib └── results ├── README.md └── hawaii-trend.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/README.md -------------------------------------------------------------------------------- /code/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/.pylintrc -------------------------------------------------------------------------------- /code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/Makefile -------------------------------------------------------------------------------- /code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/README.md -------------------------------------------------------------------------------- /code/mypackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/mypackage/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/mypackage/io.py -------------------------------------------------------------------------------- /code/mypackage/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/mypackage/processing.py -------------------------------------------------------------------------------- /code/notebooks/estimate-hawaii-trend.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/notebooks/estimate-hawaii-trend.ipynb -------------------------------------------------------------------------------- /code/notebooks/figure-hawaii-trend.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/notebooks/figure-hawaii-trend.ipynb -------------------------------------------------------------------------------- /code/run_notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/run_notebook.sh -------------------------------------------------------------------------------- /code/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/setup.py -------------------------------------------------------------------------------- /code/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/tests/test_io.py -------------------------------------------------------------------------------- /code/tests/test_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/code/tests/test_processing.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/data/README.md -------------------------------------------------------------------------------- /data/hawaii-TAVG-Trend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/data/hawaii-TAVG-Trend.txt -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/environment.yml -------------------------------------------------------------------------------- /manuscript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/manuscript/Makefile -------------------------------------------------------------------------------- /manuscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/manuscript/README.md -------------------------------------------------------------------------------- /manuscript/figures/hawaii-trend.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/manuscript/figures/hawaii-trend.eps -------------------------------------------------------------------------------- /manuscript/figures/hawaii-trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/manuscript/figures/hawaii-trend.png -------------------------------------------------------------------------------- /manuscript/hawaii_trend.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/manuscript/hawaii_trend.tex -------------------------------------------------------------------------------- /manuscript/manuscript.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/manuscript/manuscript.tex -------------------------------------------------------------------------------- /manuscript/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/manuscript/references.bib -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/results/README.md -------------------------------------------------------------------------------- /results/hawaii-trend.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinga-lab/paper-template/HEAD/results/hawaii-trend.csv --------------------------------------------------------------------------------