├── .gitignore ├── LICENSE.md ├── README.md ├── examples ├── .gitkeep ├── jra55_tmp_1960_2009_zm.nc ├── jra55_uwnd_1960_2009_zm.nc ├── solaris-heppa │ ├── README.md │ ├── config_template.yaml │ ├── generate_config_refC2.sh │ ├── py36-env.txt │ ├── requirements.txt │ ├── solaris_heppa_analysis-script.py │ └── templater.sh └── xarray_coupled_w_GLSAR_JRA55_analysis.ipynb ├── regressors ├── Ap_index_1932_2010.nc ├── README.md ├── enso_HadISST_monthly_1947_2009.nc ├── sad_gm_50hPa_1949_2013.nc ├── saod_1960_2013.nc └── solar_1947.nc ├── requirements.txt └── scripts ├── eofs_univ_ccmi_xarray.py ├── lin_reg_univ_ccmi_xarray.py ├── run.sh ├── supp_functions.py └── supp_functions.pyc /.gitignore: -------------------------------------------------------------------------------- 1 | *.nc 2 | *.pdf 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/README.md -------------------------------------------------------------------------------- /examples/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/jra55_tmp_1960_2009_zm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/examples/jra55_tmp_1960_2009_zm.nc -------------------------------------------------------------------------------- /examples/jra55_uwnd_1960_2009_zm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/examples/jra55_uwnd_1960_2009_zm.nc -------------------------------------------------------------------------------- /examples/solaris-heppa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/examples/solaris-heppa/README.md -------------------------------------------------------------------------------- /examples/solaris-heppa/config_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/examples/solaris-heppa/config_template.yaml -------------------------------------------------------------------------------- /examples/solaris-heppa/generate_config_refC2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/examples/solaris-heppa/generate_config_refC2.sh -------------------------------------------------------------------------------- /examples/solaris-heppa/py36-env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/examples/solaris-heppa/py36-env.txt -------------------------------------------------------------------------------- /examples/solaris-heppa/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/examples/solaris-heppa/requirements.txt -------------------------------------------------------------------------------- /examples/solaris-heppa/solaris_heppa_analysis-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/examples/solaris-heppa/solaris_heppa_analysis-script.py -------------------------------------------------------------------------------- /examples/solaris-heppa/templater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/examples/solaris-heppa/templater.sh -------------------------------------------------------------------------------- /examples/xarray_coupled_w_GLSAR_JRA55_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/examples/xarray_coupled_w_GLSAR_JRA55_analysis.ipynb -------------------------------------------------------------------------------- /regressors/Ap_index_1932_2010.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/regressors/Ap_index_1932_2010.nc -------------------------------------------------------------------------------- /regressors/README.md: -------------------------------------------------------------------------------- 1 | # Regressors' description 2 | -------------------------------------------------------------------------------- /regressors/enso_HadISST_monthly_1947_2009.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/regressors/enso_HadISST_monthly_1947_2009.nc -------------------------------------------------------------------------------- /regressors/sad_gm_50hPa_1949_2013.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/regressors/sad_gm_50hPa_1949_2013.nc -------------------------------------------------------------------------------- /regressors/saod_1960_2013.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/regressors/saod_1960_2013.nc -------------------------------------------------------------------------------- /regressors/solar_1947.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/regressors/solar_1947.nc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/eofs_univ_ccmi_xarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/scripts/eofs_univ_ccmi_xarray.py -------------------------------------------------------------------------------- /scripts/lin_reg_univ_ccmi_xarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/scripts/lin_reg_univ_ccmi_xarray.py -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/supp_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/scripts/supp_functions.py -------------------------------------------------------------------------------- /scripts/supp_functions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuchaale/X-regression/HEAD/scripts/supp_functions.pyc --------------------------------------------------------------------------------