├── .github └── workflows │ └── binder_on_pr.yml ├── .gitignore ├── 1_Getting_Started.ipynb ├── 2_SVD_and_BSS.ipynb ├── Fitting_tutorial.ipynb ├── Github_tutorial_IMC_2014.pdf ├── Online_Robust_PCA.ipynb ├── README.md ├── environment-all.yml ├── environment.yml ├── image_data ├── datasets │ ├── stem_abf_data.hspy │ └── stem_abf_data_imagestack.hspy └── working_with_imagedata.ipynb ├── making_figures └── making_signal2d_figure_using_matplotlib.ipynb └── pytest.ini /.github/workflows/binder_on_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/.github/workflows/binder_on_pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /1_Getting_Started.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/1_Getting_Started.ipynb -------------------------------------------------------------------------------- /2_SVD_and_BSS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/2_SVD_and_BSS.ipynb -------------------------------------------------------------------------------- /Fitting_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/Fitting_tutorial.ipynb -------------------------------------------------------------------------------- /Github_tutorial_IMC_2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/Github_tutorial_IMC_2014.pdf -------------------------------------------------------------------------------- /Online_Robust_PCA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/Online_Robust_PCA.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/README.md -------------------------------------------------------------------------------- /environment-all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/environment-all.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/environment.yml -------------------------------------------------------------------------------- /image_data/datasets/stem_abf_data.hspy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/image_data/datasets/stem_abf_data.hspy -------------------------------------------------------------------------------- /image_data/datasets/stem_abf_data_imagestack.hspy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/image_data/datasets/stem_abf_data_imagestack.hspy -------------------------------------------------------------------------------- /image_data/working_with_imagedata.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/image_data/working_with_imagedata.ipynb -------------------------------------------------------------------------------- /making_figures/making_signal2d_figure_using_matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/making_figures/making_signal2d_figure_using_matplotlib.ipynb -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperspy/hyperspy-demos/HEAD/pytest.ini --------------------------------------------------------------------------------