├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── how_to.md └── workflows │ ├── ci.yml │ ├── formatting.yml │ ├── pull-request-linting.yml │ └── release_package.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── cliff.toml ├── docs ├── Makefile ├── __init__.py ├── _static │ └── custom.css ├── _templates │ ├── custom-class-template.rst │ └── custom-module-template.rst ├── conf.py ├── content │ ├── api_reference │ │ ├── _autosummary │ │ │ ├── xeofs.RotatorFactory.rst │ │ │ ├── xeofs.cross.CCA.rst │ │ │ ├── xeofs.cross.CPCCA.rst │ │ │ ├── xeofs.cross.CPCCARotator.rst │ │ │ ├── xeofs.cross.ComplexCCA.rst │ │ │ ├── xeofs.cross.ComplexCPCCA.rst │ │ │ ├── xeofs.cross.ComplexCPCCARotator.rst │ │ │ ├── xeofs.cross.ComplexMCA.rst │ │ │ ├── xeofs.cross.ComplexMCARotator.rst │ │ │ ├── xeofs.cross.ComplexRDA.rst │ │ │ ├── xeofs.cross.HilbertCCA.rst │ │ │ ├── xeofs.cross.HilbertCPCCA.rst │ │ │ ├── xeofs.cross.HilbertCPCCARotator.rst │ │ │ ├── xeofs.cross.HilbertMCA.rst │ │ │ ├── xeofs.cross.HilbertMCARotator.rst │ │ │ ├── xeofs.cross.HilbertRDA.rst │ │ │ ├── xeofs.cross.MCA.rst │ │ │ ├── xeofs.cross.MCARotator.rst │ │ │ ├── xeofs.cross.RDA.rst │ │ │ ├── xeofs.multi.CCA.rst │ │ │ ├── xeofs.single.ComplexEOF.rst │ │ │ ├── xeofs.single.ComplexEOFRotator.rst │ │ │ ├── xeofs.single.EOF.rst │ │ │ ├── xeofs.single.EOFRotator.rst │ │ │ ├── xeofs.single.ExtendedEOF.rst │ │ │ ├── xeofs.single.GWPCA.rst │ │ │ ├── xeofs.single.HilbertEOF.rst │ │ │ ├── xeofs.single.HilbertEOFRotator.rst │ │ │ ├── xeofs.single.OPA.rst │ │ │ ├── xeofs.single.POP.rst │ │ │ ├── xeofs.single.SparsePCA.rst │ │ │ └── xeofs.validation.EOFBootstrapper.rst │ │ ├── cross_set_analysis.rst │ │ ├── index.rst │ │ ├── model_evaluation.rst │ │ ├── multi_set_analysis.rst │ │ ├── single_set_analysis.rst │ │ └── utilities.rst │ ├── contributing.rst │ ├── user_guide │ │ ├── auto_examples │ │ │ ├── 1single │ │ │ │ ├── images │ │ │ │ │ ├── sphx_glr_plot_complex_eof_001.png │ │ │ │ │ ├── sphx_glr_plot_complex_eof_002.png │ │ │ │ │ ├── sphx_glr_plot_eeof_001.png │ │ │ │ │ ├── sphx_glr_plot_eeof_002.png │ │ │ │ │ ├── sphx_glr_plot_eeof_003.png │ │ │ │ │ ├── sphx_glr_plot_eeof_trend_001.png │ │ │ │ │ ├── sphx_glr_plot_eeof_trend_002.png │ │ │ │ │ ├── sphx_glr_plot_eeof_trend_003.png │ │ │ │ │ ├── sphx_glr_plot_eof-smode_001.png │ │ │ │ │ ├── sphx_glr_plot_eof-tmode_001.png │ │ │ │ │ ├── sphx_glr_plot_gwpca_001.png │ │ │ │ │ ├── sphx_glr_plot_gwpca_002.png │ │ │ │ │ ├── sphx_glr_plot_hilbert_eof_001.png │ │ │ │ │ ├── sphx_glr_plot_hilbert_eof_002.png │ │ │ │ │ ├── sphx_glr_plot_hilbert_eof_003.png │ │ │ │ │ ├── sphx_glr_plot_hilbert_eof_004.png │ │ │ │ │ ├── sphx_glr_plot_mreof_001.png │ │ │ │ │ ├── sphx_glr_plot_multivariate-eof_001.png │ │ │ │ │ ├── sphx_glr_plot_rotated_eof_001.png │ │ │ │ │ ├── sphx_glr_plot_weighted-eof_001.png │ │ │ │ │ └── thumb │ │ │ │ │ │ ├── sphx_glr_plot_complex_eof_thumb.png │ │ │ │ │ │ ├── sphx_glr_plot_eeof_thumb.png │ │ │ │ │ │ ├── sphx_glr_plot_eeof_trend_thumb.png │ │ │ │ │ │ ├── sphx_glr_plot_eof-smode_thumb.png │ │ │ │ │ │ ├── sphx_glr_plot_eof-tmode_thumb.png │ │ │ │ │ │ ├── sphx_glr_plot_gwpca_thumb.png │ │ │ │ │ │ ├── sphx_glr_plot_hilbert_eof_thumb.png │ │ │ │ │ │ ├── sphx_glr_plot_mreof_thumb.png │ │ │ │ │ │ ├── sphx_glr_plot_multivariate-eof_thumb.png │ │ │ │ │ │ ├── sphx_glr_plot_rotated_eof_thumb.png │ │ │ │ │ │ └── sphx_glr_plot_weighted-eof_thumb.png │ │ │ │ ├── index.rst │ │ │ │ ├── plot_complex_eof.ipynb │ │ │ │ ├── plot_complex_eof.py │ │ │ │ ├── plot_complex_eof.py.md5 │ │ │ │ ├── plot_complex_eof.rst │ │ │ │ ├── plot_complex_eof_codeobj.pickle │ │ │ │ ├── plot_eeof.ipynb │ │ │ │ ├── plot_eeof.py │ │ │ │ ├── plot_eeof.py.md5 │ │ │ │ ├── plot_eeof.rst │ │ │ │ ├── plot_eeof_codeobj.pickle │ │ │ │ ├── plot_eeof_trend.ipynb │ │ │ │ ├── plot_eeof_trend.py │ │ │ │ ├── plot_eeof_trend.py.md5 │ │ │ │ ├── plot_eeof_trend.rst │ │ │ │ ├── plot_eeof_trend_codeobj.pickle │ │ │ │ ├── plot_eof-smode.ipynb │ │ │ │ ├── plot_eof-smode.py │ │ │ │ ├── plot_eof-smode.py.md5 │ │ │ │ ├── plot_eof-smode.rst │ │ │ │ ├── plot_eof-smode_codeobj.pickle │ │ │ │ ├── plot_eof-tmode.ipynb │ │ │ │ ├── plot_eof-tmode.py │ │ │ │ ├── plot_eof-tmode.py.md5 │ │ │ │ ├── plot_eof-tmode.rst │ │ │ │ ├── plot_eof-tmode_codeobj.pickle │ │ │ │ ├── plot_gwpca.ipynb │ │ │ │ ├── plot_gwpca.py │ │ │ │ ├── plot_gwpca.py.md5 │ │ │ │ ├── plot_gwpca.rst │ │ │ │ ├── plot_gwpca_codeobj.pickle │ │ │ │ ├── plot_hilbert_eof.ipynb │ │ │ │ ├── plot_hilbert_eof.py │ │ │ │ ├── plot_hilbert_eof.py.md5 │ │ │ │ ├── plot_hilbert_eof.rst │ │ │ │ ├── plot_hilbert_eof_codeobj.pickle │ │ │ │ ├── plot_mreof.ipynb │ │ │ │ ├── plot_mreof.py │ │ │ │ ├── plot_mreof.py.md5 │ │ │ │ ├── plot_mreof.rst │ │ │ │ ├── plot_mreof_codeobj.pickle │ │ │ │ ├── plot_multivariate-eof.ipynb │ │ │ │ ├── plot_multivariate-eof.py │ │ │ │ ├── plot_multivariate-eof.py.md5 │ │ │ │ ├── plot_multivariate-eof.rst │ │ │ │ ├── plot_multivariate-eof_codeobj.pickle │ │ │ │ ├── plot_rotated_eof.ipynb │ │ │ │ ├── plot_rotated_eof.py │ │ │ │ ├── plot_rotated_eof.py.md5 │ │ │ │ ├── plot_rotated_eof.rst │ │ │ │ ├── plot_rotated_eof_codeobj.pickle │ │ │ │ ├── plot_weighted-eof.ipynb │ │ │ │ ├── plot_weighted-eof.py │ │ │ │ ├── plot_weighted-eof.py.md5 │ │ │ │ ├── plot_weighted-eof.rst │ │ │ │ ├── plot_weighted-eof_codeobj.pickle │ │ │ │ └── sg_execution_times.rst │ │ │ ├── 2cross │ │ │ │ ├── images │ │ │ │ │ ├── sphx_glr_plot_mca_001.png │ │ │ │ │ ├── sphx_glr_plot_rotated_mca_001.png │ │ │ │ │ └── thumb │ │ │ │ │ │ ├── sphx_glr_plot_mca_thumb.png │ │ │ │ │ │ └── sphx_glr_plot_rotated_mca_thumb.png │ │ │ │ ├── index.rst │ │ │ │ ├── plot_mca.ipynb │ │ │ │ ├── plot_mca.py │ │ │ │ ├── plot_mca.py.md5 │ │ │ │ ├── plot_mca.rst │ │ │ │ ├── plot_mca_codeobj.pickle │ │ │ │ ├── plot_rotated_mca.ipynb │ │ │ │ ├── plot_rotated_mca.py │ │ │ │ ├── plot_rotated_mca.py.md5 │ │ │ │ ├── plot_rotated_mca.rst │ │ │ │ ├── plot_rotated_mca_codeobj.pickle │ │ │ │ └── sg_execution_times.rst │ │ │ ├── 3multi │ │ │ │ ├── images │ │ │ │ │ ├── sphx_glr_plot_cca_001.png │ │ │ │ │ ├── sphx_glr_plot_cca_002.png │ │ │ │ │ └── thumb │ │ │ │ │ │ └── sphx_glr_plot_cca_thumb.png │ │ │ │ ├── index.rst │ │ │ │ ├── plot_cca.ipynb │ │ │ │ ├── plot_cca.py │ │ │ │ ├── plot_cca.py.md5 │ │ │ │ ├── plot_cca.rst │ │ │ │ ├── plot_cca_codeobj.pickle │ │ │ │ └── sg_execution_times.rst │ │ │ ├── 4validation │ │ │ │ ├── images │ │ │ │ │ ├── sphx_glr_plot_bootstrap_001.png │ │ │ │ │ └── thumb │ │ │ │ │ │ └── sphx_glr_plot_bootstrap_thumb.png │ │ │ │ ├── index.rst │ │ │ │ ├── plot_bootstrap.ipynb │ │ │ │ ├── plot_bootstrap.py │ │ │ │ ├── plot_bootstrap.py.md5 │ │ │ │ ├── plot_bootstrap.rst │ │ │ │ ├── plot_bootstrap_codeobj.pickle │ │ │ │ └── sg_execution_times.rst │ │ │ ├── auto_examples_jupyter.zip │ │ │ ├── auto_examples_python.zip │ │ │ └── index.rst │ │ ├── core_functionalities │ │ │ ├── dask_support.rst │ │ │ ├── efficient.rst │ │ │ ├── index.rst │ │ │ ├── labeled_data.rst │ │ │ ├── missing_values.rst │ │ │ ├── model_evaluation.rst │ │ │ └── model_serialization.rst │ │ ├── examples │ │ │ ├── 1single │ │ │ │ ├── README.rst │ │ │ │ ├── eof-smode.jpg │ │ │ │ ├── eof-tmode.jpg │ │ │ │ ├── mreof-analysis.jpg │ │ │ │ ├── multivariate-eof-analysis.jpg │ │ │ │ ├── plot_complex_eof.py │ │ │ │ ├── plot_eeof.png │ │ │ │ ├── plot_eeof.py │ │ │ │ ├── plot_eeof_trend.py │ │ │ │ ├── plot_eof-smode.py │ │ │ │ ├── plot_eof-tmode.py │ │ │ │ ├── plot_gwpca.py │ │ │ │ ├── plot_hilbert_eof.py │ │ │ │ ├── plot_mreof.py │ │ │ │ ├── plot_multivariate-eof.py │ │ │ │ ├── plot_rotated_eof.py │ │ │ │ ├── plot_weighted-eof.py │ │ │ │ ├── rotated_eof.jpg │ │ │ │ ├── sparse_pca.jpg │ │ │ │ └── weighted_eof.jpg │ │ │ ├── 2cross │ │ │ │ ├── README.rst │ │ │ │ ├── mca.jpg │ │ │ │ ├── plot_mca.py │ │ │ │ ├── plot_rotated_mca.py │ │ │ │ └── rotated_mca.jpg │ │ │ ├── 3multi │ │ │ │ ├── README.rst │ │ │ │ └── plot_cca.py │ │ │ ├── 4validation │ │ │ │ ├── README.rst │ │ │ │ ├── bootstrap.jpg │ │ │ │ └── plot_bootstrap.py │ │ │ └── README.rst │ │ ├── how_to_cite.rst │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── migration_v3.rst │ │ ├── model_implementation.rst │ │ ├── quickstart.ipynb │ │ ├── should_i_use_this.rst │ │ └── why.rst │ └── whats_new │ │ └── CHANGELOG.md ├── environment.yml ├── img │ ├── example_sst_rotated_pca_dark.png │ ├── example_sst_rotated_pca_light.png │ ├── timings_dark.png │ └── timings_light.png ├── index.rst ├── logos │ ├── favicon.ico │ ├── xeofs_logo_dark.png │ ├── xeofs_logo_dark_aspect21.png │ ├── xeofs_logo_icon.png │ └── xeofs_logo_light.png ├── make.bat └── perf │ ├── figure_timings.py │ ├── timings.nc │ ├── timings_dark.png │ ├── timings_light.png │ └── xeofs_timings.py ├── pyproject.toml ├── tests ├── __init__.py ├── conftest.py ├── data │ └── sample_data.nc ├── data_container │ └── __init__.py ├── linalg │ ├── __init__.py │ └── test_decomposer.py ├── models │ ├── __init__.py │ ├── cross │ │ ├── __init__.py │ │ ├── test_cca.py │ │ ├── test_cpcca.py │ │ ├── test_cpcca_complex_rotator.py │ │ ├── test_cpcca_rotator.py │ │ ├── test_hilbert_cpcca.py │ │ ├── test_hilbert_mca.py │ │ ├── test_hilbert_mca_rotator.py │ │ ├── test_mca.py │ │ ├── test_mca_rotator.py │ │ └── test_rda.py │ ├── multi │ │ ├── __init__.py │ │ └── test_cca.py │ ├── single │ │ ├── __init__.py │ │ ├── test_eeof.py │ │ ├── test_eof.py │ │ ├── test_eof_rotator.py │ │ ├── test_gwpca.py │ │ ├── test_hilbert_eof.py │ │ ├── test_hilbert_eof_rotator.py │ │ ├── test_opa.py │ │ ├── test_pop.py │ │ └── test_sparse_pca.py │ └── test_rotator_factory.py ├── preprocessing │ ├── __init__.py │ ├── test_multiindex_converter_dataarray.py │ ├── test_multiindex_converter_dataset.py │ ├── test_pca.py │ ├── test_preprocessor_dataarray.py │ ├── test_preprocessor_datalist.py │ ├── test_preprocessor_dataset.py │ ├── test_renamer_dataarray.py │ ├── test_renamer_dataset.py │ ├── test_sanitizer.py │ ├── test_scaler_dataarray.py │ ├── test_scaler_dataset.py │ ├── test_stacker_dataarray.py │ ├── test_stacker_dataset.py │ └── test_whitener.py ├── utilities.py ├── utils │ ├── __init__.py │ ├── test_dimension_renamer.py │ └── test_total_variance.py └── validation │ ├── __init__.py │ └── test_eof_bootstrapper.py └── xeofs ├── __init__.py ├── _version.py ├── base_model.py ├── cross ├── __init__.py ├── base_model_cross_set.py ├── cca.py ├── cpcca.py ├── cpcca_rotator.py ├── mca.py ├── mca_rotator.py └── rda.py ├── data_container ├── __init__.py └── data_container.py ├── linalg ├── __init__.py ├── _numpy │ ├── __init__.py │ ├── _rotation.py │ ├── _svd.py │ └── _utils.py ├── decomposer.py ├── rotation.py ├── svd.py └── utils.py ├── multi ├── __init__.py └── cca.py ├── preprocessing ├── __init__.py ├── concatenator.py ├── dimension_renamer.py ├── list_processor.py ├── multi_index_converter.py ├── pca.py ├── preprocessor.py ├── sanitizer.py ├── scaler.py ├── stacker.py ├── transformer.py └── whitener.py ├── rotator_factory.py ├── single ├── __init__.py ├── _numpy │ ├── __init__.py │ └── _sparse_pca.py ├── base_model_single_set.py ├── eeof.py ├── eof.py ├── eof_rotator.py ├── gwpca.py ├── opa.py ├── pop.py └── sparse_pca.py ├── utils ├── __init__.py ├── constants.py ├── data_types.py ├── dimension_renamer.py ├── hilbert_transform.py ├── io.py ├── optional │ ├── __init__.py │ ├── distance_metrics.py │ ├── kernels.py │ ├── numba_utils.py │ └── statistics.py ├── sanity_checks.py └── xarray_utils.py └── validation ├── __init__.py ├── _base_bootstrapper.py └── bootstrapper.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/how_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/.github/ISSUE_TEMPLATE/how_to.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/formatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/.github/workflows/formatting.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/.github/workflows/pull-request-linting.yml -------------------------------------------------------------------------------- /.github/workflows/release_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/.github/workflows/release_package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/README.md -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/cliff.toml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_templates/custom-class-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/_templates/custom-class-template.rst -------------------------------------------------------------------------------- /docs/_templates/custom-module-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/_templates/custom-module-template.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.RotatorFactory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.RotatorFactory.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.CCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.CCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.CPCCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.CPCCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.CPCCARotator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.CPCCARotator.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.ComplexCCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.ComplexCCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.ComplexCPCCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.ComplexCPCCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.ComplexCPCCARotator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.ComplexCPCCARotator.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.ComplexMCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.ComplexMCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.ComplexMCARotator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.ComplexMCARotator.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.ComplexRDA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.ComplexRDA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.HilbertCCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.HilbertCCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.HilbertCPCCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.HilbertCPCCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.HilbertCPCCARotator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.HilbertCPCCARotator.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.HilbertMCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.HilbertMCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.HilbertMCARotator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.HilbertMCARotator.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.HilbertRDA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.HilbertRDA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.MCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.MCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.MCARotator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.MCARotator.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.cross.RDA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.cross.RDA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.multi.CCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.multi.CCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.ComplexEOF.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.ComplexEOF.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.ComplexEOFRotator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.ComplexEOFRotator.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.EOF.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.EOF.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.EOFRotator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.EOFRotator.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.ExtendedEOF.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.ExtendedEOF.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.GWPCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.GWPCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.HilbertEOF.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.HilbertEOF.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.HilbertEOFRotator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.HilbertEOFRotator.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.OPA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.OPA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.POP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.POP.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.single.SparsePCA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.single.SparsePCA.rst -------------------------------------------------------------------------------- /docs/content/api_reference/_autosummary/xeofs.validation.EOFBootstrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/_autosummary/xeofs.validation.EOFBootstrapper.rst -------------------------------------------------------------------------------- /docs/content/api_reference/cross_set_analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/cross_set_analysis.rst -------------------------------------------------------------------------------- /docs/content/api_reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/index.rst -------------------------------------------------------------------------------- /docs/content/api_reference/model_evaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/model_evaluation.rst -------------------------------------------------------------------------------- /docs/content/api_reference/multi_set_analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/multi_set_analysis.rst -------------------------------------------------------------------------------- /docs/content/api_reference/single_set_analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/single_set_analysis.rst -------------------------------------------------------------------------------- /docs/content/api_reference/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/api_reference/utilities.rst -------------------------------------------------------------------------------- /docs/content/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/contributing.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_complex_eof_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_complex_eof_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_complex_eof_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_complex_eof_002.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_002.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_003.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_trend_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_trend_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_trend_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_trend_002.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_trend_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eeof_trend_003.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eof-smode_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eof-smode_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eof-tmode_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_eof-tmode_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_gwpca_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_gwpca_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_gwpca_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_gwpca_002.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_hilbert_eof_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_hilbert_eof_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_hilbert_eof_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_hilbert_eof_002.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_hilbert_eof_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_hilbert_eof_003.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_hilbert_eof_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_hilbert_eof_004.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_mreof_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_mreof_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_multivariate-eof_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_multivariate-eof_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_rotated_eof_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_rotated_eof_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_weighted-eof_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/sphx_glr_plot_weighted-eof_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_complex_eof_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_complex_eof_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_eeof_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_eeof_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_eeof_trend_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_eeof_trend_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_eof-smode_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_eof-smode_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_eof-tmode_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_eof-tmode_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_gwpca_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_gwpca_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_hilbert_eof_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_hilbert_eof_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_mreof_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_mreof_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_multivariate-eof_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_multivariate-eof_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_rotated_eof_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_rotated_eof_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_weighted-eof_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/images/thumb/sphx_glr_plot_weighted-eof_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/index.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_complex_eof.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_complex_eof.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_complex_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_complex_eof.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_complex_eof.py.md5: -------------------------------------------------------------------------------- 1 | 00a4013c7fa42189d7980ec2a54d0eae -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_complex_eof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_complex_eof.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_complex_eof_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_complex_eof_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eeof.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eeof.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eeof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eeof.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eeof.py.md5: -------------------------------------------------------------------------------- 1 | dad4ad8d30e4903c94110f68dfed3398 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eeof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eeof.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eeof_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eeof_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eeof_trend.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eeof_trend.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eeof_trend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eeof_trend.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eeof_trend.py.md5: -------------------------------------------------------------------------------- 1 | e84d0364f470ed5e3eae38a735ab52e0 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eeof_trend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eeof_trend.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eeof_trend_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eeof_trend_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eof-smode.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eof-smode.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eof-smode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eof-smode.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eof-smode.py.md5: -------------------------------------------------------------------------------- 1 | 6d0f12994146614921c2bbc9e655d938 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eof-smode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eof-smode.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eof-smode_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eof-smode_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eof-tmode.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eof-tmode.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eof-tmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eof-tmode.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eof-tmode.py.md5: -------------------------------------------------------------------------------- 1 | af1f1248f081012ef3cb40381d6bbe73 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eof-tmode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eof-tmode.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_eof-tmode_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_eof-tmode_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_gwpca.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_gwpca.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_gwpca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_gwpca.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_gwpca.py.md5: -------------------------------------------------------------------------------- 1 | ae1e8af4b123c765c1cfd4d63d9386c2 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_gwpca.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_gwpca.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_gwpca_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_gwpca_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_hilbert_eof.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_hilbert_eof.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_hilbert_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_hilbert_eof.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_hilbert_eof.py.md5: -------------------------------------------------------------------------------- 1 | 28f29c6a357ea6a325769ce0c7554634 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_hilbert_eof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_hilbert_eof.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_hilbert_eof_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_hilbert_eof_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_mreof.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_mreof.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_mreof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_mreof.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_mreof.py.md5: -------------------------------------------------------------------------------- 1 | d7e99506275146b34aa2607581ecbd1e -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_mreof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_mreof.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_mreof_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_mreof_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_multivariate-eof.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_multivariate-eof.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_multivariate-eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_multivariate-eof.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_multivariate-eof.py.md5: -------------------------------------------------------------------------------- 1 | 58257a2d0b4d2b974cf43e80e195be40 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_multivariate-eof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_multivariate-eof.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_multivariate-eof_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_multivariate-eof_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_rotated_eof.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_rotated_eof.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_rotated_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_rotated_eof.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_rotated_eof.py.md5: -------------------------------------------------------------------------------- 1 | 669ef8691b2403f69184b4309b0f154b -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_rotated_eof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_rotated_eof.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_rotated_eof_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_rotated_eof_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_weighted-eof.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_weighted-eof.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_weighted-eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_weighted-eof.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_weighted-eof.py.md5: -------------------------------------------------------------------------------- 1 | 7047ce79c7b692b5a3beb8b39381ff16 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_weighted-eof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_weighted-eof.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/plot_weighted-eof_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/plot_weighted-eof_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/1single/sg_execution_times.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/1single/sg_execution_times.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/images/sphx_glr_plot_mca_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/images/sphx_glr_plot_mca_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/images/sphx_glr_plot_rotated_mca_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/images/sphx_glr_plot_rotated_mca_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/images/thumb/sphx_glr_plot_mca_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/images/thumb/sphx_glr_plot_mca_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/images/thumb/sphx_glr_plot_rotated_mca_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/images/thumb/sphx_glr_plot_rotated_mca_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/index.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/plot_mca.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/plot_mca.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/plot_mca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/plot_mca.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/plot_mca.py.md5: -------------------------------------------------------------------------------- 1 | e696fb777ef84ec447201ca9c01d1dfe -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/plot_mca.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/plot_mca.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/plot_mca_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/plot_mca_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/plot_rotated_mca.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/plot_rotated_mca.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/plot_rotated_mca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/plot_rotated_mca.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/plot_rotated_mca.py.md5: -------------------------------------------------------------------------------- 1 | 00a21b73b61a542faad2eabd27cfcdf8 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/plot_rotated_mca.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/plot_rotated_mca.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/plot_rotated_mca_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/plot_rotated_mca_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/2cross/sg_execution_times.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/2cross/sg_execution_times.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/3multi/images/sphx_glr_plot_cca_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/3multi/images/sphx_glr_plot_cca_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/3multi/images/sphx_glr_plot_cca_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/3multi/images/sphx_glr_plot_cca_002.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/3multi/images/thumb/sphx_glr_plot_cca_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/3multi/images/thumb/sphx_glr_plot_cca_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/3multi/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/3multi/index.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/3multi/plot_cca.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/3multi/plot_cca.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/3multi/plot_cca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/3multi/plot_cca.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/3multi/plot_cca.py.md5: -------------------------------------------------------------------------------- 1 | ccd6cf17e9ee3ea88ba470a3180fe224 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/3multi/plot_cca.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/3multi/plot_cca.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/3multi/plot_cca_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/3multi/plot_cca_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/3multi/sg_execution_times.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/3multi/sg_execution_times.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/4validation/images/sphx_glr_plot_bootstrap_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/4validation/images/sphx_glr_plot_bootstrap_001.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/4validation/images/thumb/sphx_glr_plot_bootstrap_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/4validation/images/thumb/sphx_glr_plot_bootstrap_thumb.png -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/4validation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/4validation/index.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/4validation/plot_bootstrap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/4validation/plot_bootstrap.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/4validation/plot_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/4validation/plot_bootstrap.py -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/4validation/plot_bootstrap.py.md5: -------------------------------------------------------------------------------- 1 | dcdf2653c5cb47f1d8828948c6fdda17 -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/4validation/plot_bootstrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/4validation/plot_bootstrap.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/4validation/plot_bootstrap_codeobj.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/4validation/plot_bootstrap_codeobj.pickle -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/4validation/sg_execution_times.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/4validation/sg_execution_times.rst -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/auto_examples_jupyter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/auto_examples_jupyter.zip -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/auto_examples_python.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/auto_examples_python.zip -------------------------------------------------------------------------------- /docs/content/user_guide/auto_examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/auto_examples/index.rst -------------------------------------------------------------------------------- /docs/content/user_guide/core_functionalities/dask_support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/core_functionalities/dask_support.rst -------------------------------------------------------------------------------- /docs/content/user_guide/core_functionalities/efficient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/core_functionalities/efficient.rst -------------------------------------------------------------------------------- /docs/content/user_guide/core_functionalities/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/core_functionalities/index.rst -------------------------------------------------------------------------------- /docs/content/user_guide/core_functionalities/labeled_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/core_functionalities/labeled_data.rst -------------------------------------------------------------------------------- /docs/content/user_guide/core_functionalities/missing_values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/core_functionalities/missing_values.rst -------------------------------------------------------------------------------- /docs/content/user_guide/core_functionalities/model_evaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/core_functionalities/model_evaluation.rst -------------------------------------------------------------------------------- /docs/content/user_guide/core_functionalities/model_serialization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/core_functionalities/model_serialization.rst -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/README.rst -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/eof-smode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/eof-smode.jpg -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/eof-tmode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/eof-tmode.jpg -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/mreof-analysis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/mreof-analysis.jpg -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/multivariate-eof-analysis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/multivariate-eof-analysis.jpg -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_complex_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_complex_eof.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_eeof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_eeof.png -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_eeof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_eeof.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_eeof_trend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_eeof_trend.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_eof-smode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_eof-smode.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_eof-tmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_eof-tmode.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_gwpca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_gwpca.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_hilbert_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_hilbert_eof.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_mreof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_mreof.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_multivariate-eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_multivariate-eof.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_rotated_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_rotated_eof.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/plot_weighted-eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/plot_weighted-eof.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/rotated_eof.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/rotated_eof.jpg -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/sparse_pca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/sparse_pca.jpg -------------------------------------------------------------------------------- /docs/content/user_guide/examples/1single/weighted_eof.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/1single/weighted_eof.jpg -------------------------------------------------------------------------------- /docs/content/user_guide/examples/2cross/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/2cross/README.rst -------------------------------------------------------------------------------- /docs/content/user_guide/examples/2cross/mca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/2cross/mca.jpg -------------------------------------------------------------------------------- /docs/content/user_guide/examples/2cross/plot_mca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/2cross/plot_mca.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/2cross/plot_rotated_mca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/2cross/plot_rotated_mca.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/2cross/rotated_mca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/2cross/rotated_mca.jpg -------------------------------------------------------------------------------- /docs/content/user_guide/examples/3multi/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/3multi/README.rst -------------------------------------------------------------------------------- /docs/content/user_guide/examples/3multi/plot_cca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/3multi/plot_cca.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/4validation/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/4validation/README.rst -------------------------------------------------------------------------------- /docs/content/user_guide/examples/4validation/bootstrap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/4validation/bootstrap.jpg -------------------------------------------------------------------------------- /docs/content/user_guide/examples/4validation/plot_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/4validation/plot_bootstrap.py -------------------------------------------------------------------------------- /docs/content/user_guide/examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/examples/README.rst -------------------------------------------------------------------------------- /docs/content/user_guide/how_to_cite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/how_to_cite.rst -------------------------------------------------------------------------------- /docs/content/user_guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/index.rst -------------------------------------------------------------------------------- /docs/content/user_guide/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/installation.rst -------------------------------------------------------------------------------- /docs/content/user_guide/migration_v3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/migration_v3.rst -------------------------------------------------------------------------------- /docs/content/user_guide/model_implementation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/model_implementation.rst -------------------------------------------------------------------------------- /docs/content/user_guide/quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/quickstart.ipynb -------------------------------------------------------------------------------- /docs/content/user_guide/should_i_use_this.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/should_i_use_this.rst -------------------------------------------------------------------------------- /docs/content/user_guide/why.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/user_guide/why.rst -------------------------------------------------------------------------------- /docs/content/whats_new/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/content/whats_new/CHANGELOG.md -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/img/example_sst_rotated_pca_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/img/example_sst_rotated_pca_dark.png -------------------------------------------------------------------------------- /docs/img/example_sst_rotated_pca_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/img/example_sst_rotated_pca_light.png -------------------------------------------------------------------------------- /docs/img/timings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/img/timings_dark.png -------------------------------------------------------------------------------- /docs/img/timings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/img/timings_light.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/logos/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/logos/favicon.ico -------------------------------------------------------------------------------- /docs/logos/xeofs_logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/logos/xeofs_logo_dark.png -------------------------------------------------------------------------------- /docs/logos/xeofs_logo_dark_aspect21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/logos/xeofs_logo_dark_aspect21.png -------------------------------------------------------------------------------- /docs/logos/xeofs_logo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/logos/xeofs_logo_icon.png -------------------------------------------------------------------------------- /docs/logos/xeofs_logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/logos/xeofs_logo_light.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/perf/figure_timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/perf/figure_timings.py -------------------------------------------------------------------------------- /docs/perf/timings.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/perf/timings.nc -------------------------------------------------------------------------------- /docs/perf/timings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/perf/timings_dark.png -------------------------------------------------------------------------------- /docs/perf/timings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/perf/timings_light.png -------------------------------------------------------------------------------- /docs/perf/xeofs_timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/docs/perf/xeofs_timings.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/sample_data.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/data/sample_data.nc -------------------------------------------------------------------------------- /tests/data_container/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/linalg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/linalg/test_decomposer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/linalg/test_decomposer.py -------------------------------------------------------------------------------- /tests/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models/cross/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/__init__.py -------------------------------------------------------------------------------- /tests/models/cross/test_cca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/test_cca.py -------------------------------------------------------------------------------- /tests/models/cross/test_cpcca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/test_cpcca.py -------------------------------------------------------------------------------- /tests/models/cross/test_cpcca_complex_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/test_cpcca_complex_rotator.py -------------------------------------------------------------------------------- /tests/models/cross/test_cpcca_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/test_cpcca_rotator.py -------------------------------------------------------------------------------- /tests/models/cross/test_hilbert_cpcca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/test_hilbert_cpcca.py -------------------------------------------------------------------------------- /tests/models/cross/test_hilbert_mca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/test_hilbert_mca.py -------------------------------------------------------------------------------- /tests/models/cross/test_hilbert_mca_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/test_hilbert_mca_rotator.py -------------------------------------------------------------------------------- /tests/models/cross/test_mca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/test_mca.py -------------------------------------------------------------------------------- /tests/models/cross/test_mca_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/test_mca_rotator.py -------------------------------------------------------------------------------- /tests/models/cross/test_rda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/cross/test_rda.py -------------------------------------------------------------------------------- /tests/models/multi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models/multi/test_cca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/multi/test_cca.py -------------------------------------------------------------------------------- /tests/models/single/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models/single/test_eeof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/single/test_eeof.py -------------------------------------------------------------------------------- /tests/models/single/test_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/single/test_eof.py -------------------------------------------------------------------------------- /tests/models/single/test_eof_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/single/test_eof_rotator.py -------------------------------------------------------------------------------- /tests/models/single/test_gwpca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/single/test_gwpca.py -------------------------------------------------------------------------------- /tests/models/single/test_hilbert_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/single/test_hilbert_eof.py -------------------------------------------------------------------------------- /tests/models/single/test_hilbert_eof_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/single/test_hilbert_eof_rotator.py -------------------------------------------------------------------------------- /tests/models/single/test_opa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/single/test_opa.py -------------------------------------------------------------------------------- /tests/models/single/test_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/single/test_pop.py -------------------------------------------------------------------------------- /tests/models/single/test_sparse_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/single/test_sparse_pca.py -------------------------------------------------------------------------------- /tests/models/test_rotator_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/models/test_rotator_factory.py -------------------------------------------------------------------------------- /tests/preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/preprocessing/test_multiindex_converter_dataarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_multiindex_converter_dataarray.py -------------------------------------------------------------------------------- /tests/preprocessing/test_multiindex_converter_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_multiindex_converter_dataset.py -------------------------------------------------------------------------------- /tests/preprocessing/test_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_pca.py -------------------------------------------------------------------------------- /tests/preprocessing/test_preprocessor_dataarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_preprocessor_dataarray.py -------------------------------------------------------------------------------- /tests/preprocessing/test_preprocessor_datalist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_preprocessor_datalist.py -------------------------------------------------------------------------------- /tests/preprocessing/test_preprocessor_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_preprocessor_dataset.py -------------------------------------------------------------------------------- /tests/preprocessing/test_renamer_dataarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_renamer_dataarray.py -------------------------------------------------------------------------------- /tests/preprocessing/test_renamer_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_renamer_dataset.py -------------------------------------------------------------------------------- /tests/preprocessing/test_sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_sanitizer.py -------------------------------------------------------------------------------- /tests/preprocessing/test_scaler_dataarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_scaler_dataarray.py -------------------------------------------------------------------------------- /tests/preprocessing/test_scaler_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_scaler_dataset.py -------------------------------------------------------------------------------- /tests/preprocessing/test_stacker_dataarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_stacker_dataarray.py -------------------------------------------------------------------------------- /tests/preprocessing/test_stacker_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_stacker_dataset.py -------------------------------------------------------------------------------- /tests/preprocessing/test_whitener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/preprocessing/test_whitener.py -------------------------------------------------------------------------------- /tests/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/utilities.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/test_dimension_renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/utils/test_dimension_renamer.py -------------------------------------------------------------------------------- /tests/utils/test_total_variance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/utils/test_total_variance.py -------------------------------------------------------------------------------- /tests/validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/validation/test_eof_bootstrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/tests/validation/test_eof_bootstrapper.py -------------------------------------------------------------------------------- /xeofs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/__init__.py -------------------------------------------------------------------------------- /xeofs/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/_version.py -------------------------------------------------------------------------------- /xeofs/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/base_model.py -------------------------------------------------------------------------------- /xeofs/cross/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/cross/__init__.py -------------------------------------------------------------------------------- /xeofs/cross/base_model_cross_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/cross/base_model_cross_set.py -------------------------------------------------------------------------------- /xeofs/cross/cca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/cross/cca.py -------------------------------------------------------------------------------- /xeofs/cross/cpcca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/cross/cpcca.py -------------------------------------------------------------------------------- /xeofs/cross/cpcca_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/cross/cpcca_rotator.py -------------------------------------------------------------------------------- /xeofs/cross/mca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/cross/mca.py -------------------------------------------------------------------------------- /xeofs/cross/mca_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/cross/mca_rotator.py -------------------------------------------------------------------------------- /xeofs/cross/rda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/cross/rda.py -------------------------------------------------------------------------------- /xeofs/data_container/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/data_container/__init__.py -------------------------------------------------------------------------------- /xeofs/data_container/data_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/data_container/data_container.py -------------------------------------------------------------------------------- /xeofs/linalg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/linalg/__init__.py -------------------------------------------------------------------------------- /xeofs/linalg/_numpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/linalg/_numpy/__init__.py -------------------------------------------------------------------------------- /xeofs/linalg/_numpy/_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/linalg/_numpy/_rotation.py -------------------------------------------------------------------------------- /xeofs/linalg/_numpy/_svd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/linalg/_numpy/_svd.py -------------------------------------------------------------------------------- /xeofs/linalg/_numpy/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/linalg/_numpy/_utils.py -------------------------------------------------------------------------------- /xeofs/linalg/decomposer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/linalg/decomposer.py -------------------------------------------------------------------------------- /xeofs/linalg/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/linalg/rotation.py -------------------------------------------------------------------------------- /xeofs/linalg/svd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/linalg/svd.py -------------------------------------------------------------------------------- /xeofs/linalg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/linalg/utils.py -------------------------------------------------------------------------------- /xeofs/multi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/multi/__init__.py -------------------------------------------------------------------------------- /xeofs/multi/cca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/multi/cca.py -------------------------------------------------------------------------------- /xeofs/preprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/__init__.py -------------------------------------------------------------------------------- /xeofs/preprocessing/concatenator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/concatenator.py -------------------------------------------------------------------------------- /xeofs/preprocessing/dimension_renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/dimension_renamer.py -------------------------------------------------------------------------------- /xeofs/preprocessing/list_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/list_processor.py -------------------------------------------------------------------------------- /xeofs/preprocessing/multi_index_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/multi_index_converter.py -------------------------------------------------------------------------------- /xeofs/preprocessing/pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/pca.py -------------------------------------------------------------------------------- /xeofs/preprocessing/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/preprocessor.py -------------------------------------------------------------------------------- /xeofs/preprocessing/sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/sanitizer.py -------------------------------------------------------------------------------- /xeofs/preprocessing/scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/scaler.py -------------------------------------------------------------------------------- /xeofs/preprocessing/stacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/stacker.py -------------------------------------------------------------------------------- /xeofs/preprocessing/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/transformer.py -------------------------------------------------------------------------------- /xeofs/preprocessing/whitener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/preprocessing/whitener.py -------------------------------------------------------------------------------- /xeofs/rotator_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/rotator_factory.py -------------------------------------------------------------------------------- /xeofs/single/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/single/__init__.py -------------------------------------------------------------------------------- /xeofs/single/_numpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xeofs/single/_numpy/_sparse_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/single/_numpy/_sparse_pca.py -------------------------------------------------------------------------------- /xeofs/single/base_model_single_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/single/base_model_single_set.py -------------------------------------------------------------------------------- /xeofs/single/eeof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/single/eeof.py -------------------------------------------------------------------------------- /xeofs/single/eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/single/eof.py -------------------------------------------------------------------------------- /xeofs/single/eof_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/single/eof_rotator.py -------------------------------------------------------------------------------- /xeofs/single/gwpca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/single/gwpca.py -------------------------------------------------------------------------------- /xeofs/single/opa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/single/opa.py -------------------------------------------------------------------------------- /xeofs/single/pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/single/pop.py -------------------------------------------------------------------------------- /xeofs/single/sparse_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/single/sparse_pca.py -------------------------------------------------------------------------------- /xeofs/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xeofs/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/constants.py -------------------------------------------------------------------------------- /xeofs/utils/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/data_types.py -------------------------------------------------------------------------------- /xeofs/utils/dimension_renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/dimension_renamer.py -------------------------------------------------------------------------------- /xeofs/utils/hilbert_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/hilbert_transform.py -------------------------------------------------------------------------------- /xeofs/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/io.py -------------------------------------------------------------------------------- /xeofs/utils/optional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xeofs/utils/optional/distance_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/optional/distance_metrics.py -------------------------------------------------------------------------------- /xeofs/utils/optional/kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/optional/kernels.py -------------------------------------------------------------------------------- /xeofs/utils/optional/numba_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/optional/numba_utils.py -------------------------------------------------------------------------------- /xeofs/utils/optional/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/optional/statistics.py -------------------------------------------------------------------------------- /xeofs/utils/sanity_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/sanity_checks.py -------------------------------------------------------------------------------- /xeofs/utils/xarray_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/utils/xarray_utils.py -------------------------------------------------------------------------------- /xeofs/validation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/validation/__init__.py -------------------------------------------------------------------------------- /xeofs/validation/_base_bootstrapper.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xeofs/validation/bootstrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xarray-contrib/xeofs/HEAD/xeofs/validation/bootstrapper.py --------------------------------------------------------------------------------