├── .github └── workflows │ └── build.yml ├── .gitignore ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── data ├── README.txt ├── sample_data_1.npy ├── sample_data_1_filt.npy └── sample_data_2.npy ├── doc ├── Makefile ├── _templates │ ├── autosummary │ │ ├── class.rst │ │ └── function.rst │ └── layout.html ├── api.rst ├── changelog.rst ├── conf.py ├── contents.rst ├── glossary.rst ├── index.rst ├── logo.png └── reference.rst ├── examples ├── README.txt └── plot_mne_example.py ├── neurodsp ├── __init__.py ├── aperiodic │ ├── __init__.py │ ├── autocorr.py │ ├── conversions.py │ ├── dfa.py │ └── irasa.py ├── burst │ ├── __init__.py │ ├── dualthresh.py │ └── utils.py ├── filt │ ├── __init__.py │ ├── checks.py │ ├── filter.py │ ├── fir.py │ ├── iir.py │ └── utils.py ├── plts │ ├── __init__.py │ ├── aperiodic.py │ ├── combined.py │ ├── filt.py │ ├── rhythm.py │ ├── settings.py │ ├── spectral.py │ ├── style.py │ ├── time_series.py │ ├── timefrequency.py │ └── utils.py ├── rhythm │ ├── __init__.py │ ├── lc.py │ └── swm.py ├── sim │ ├── __init__.py │ ├── aperiodic.py │ ├── combined.py │ ├── cycles.py │ ├── generators.py │ ├── info.py │ ├── io.py │ ├── modulate.py │ ├── multi.py │ ├── params.py │ ├── periodic.py │ ├── signals.py │ ├── transients.py │ ├── update.py │ └── utils.py ├── spectral │ ├── __init__.py │ ├── checks.py │ ├── measures.py │ ├── power.py │ ├── utils.py │ └── variance.py ├── tests │ ├── __init__.py │ ├── aperiodic │ │ ├── test_autocorr.py │ │ ├── test_conversions.py │ │ ├── test_dfa.py │ │ └── test_irasa.py │ ├── burst │ │ ├── __init__.py │ │ ├── test_dualthresh.py │ │ └── test_utils.py │ ├── conftest.py │ ├── filt │ │ ├── __init__.py │ │ ├── test_checks.py │ │ ├── test_filter.py │ │ ├── test_fir.py │ │ ├── test_iir.py │ │ └── test_utils.py │ ├── plts │ │ ├── __init__.py │ │ ├── test_aperiodic.py │ │ ├── test_combined.py │ │ ├── test_filt.py │ │ ├── test_rhythm.py │ │ ├── test_spectral.py │ │ ├── test_style.py │ │ ├── test_time_series.py │ │ ├── test_timefrequency.py │ │ └── test_utils.py │ ├── rhythm │ │ ├── __init__.py │ │ ├── test_lc.py │ │ └── test_swm.py │ ├── sim │ │ ├── __init__.py │ │ ├── test_aperiodic.py │ │ ├── test_combined.py │ │ ├── test_cycles.py │ │ ├── test_generators.py │ │ ├── test_info.py │ │ ├── test_io.py │ │ ├── test_modulate.py │ │ ├── test_multi.py │ │ ├── test_params.py │ │ ├── test_periodic.py │ │ ├── test_signals.py │ │ ├── test_transients.py │ │ └── test_update.py │ ├── spectral │ │ ├── __init__.py │ │ ├── test_checks.py │ │ ├── test_measures.py │ │ ├── test_power.py │ │ ├── test_utils.py │ │ └── test_variance.py │ ├── timefrequency │ │ ├── __init__.py │ │ ├── test_hilbert.py │ │ └── test_wavelets.py │ ├── tsettings.py │ ├── tutils.py │ └── utils │ │ ├── __init__.py │ │ ├── test_checks.py │ │ ├── test_core.py │ │ ├── test_data.py │ │ ├── test_decorators.py │ │ ├── test_download.py │ │ ├── test_norm.py │ │ ├── test_outliers.py │ │ ├── test_sim.py │ │ └── test_yielders.py ├── timefrequency │ ├── __init__.py │ ├── hilbert.py │ └── wavelets.py ├── utils │ ├── __init__.py │ ├── checks.py │ ├── core.py │ ├── data.py │ ├── decorators.py │ ├── download.py │ ├── norm.py │ ├── outliers.py │ ├── sim.py │ └── yielders.py └── version.py ├── paper ├── paper.bib └── paper.md ├── requirements-docs.txt ├── requirements.txt ├── setup.py └── tutorials ├── README.txt ├── aperiodic ├── README.txt ├── plot_Autocorr.py ├── plot_Fluctuations.py └── plot_IRASA.py ├── burst ├── README.txt └── plot_BurstDetection.py ├── filt ├── README.txt ├── plot_1_Filtering.py ├── plot_2_FIR.py ├── plot_3_IIR.py └── plot_4_checks.py ├── rhythm ├── README.txt ├── plot_LaggedCoherence.py └── plot_SlidingWindowMatching.py ├── sim ├── README.txt ├── plot_01_SimulatePeriodic.py ├── plot_02_SimulateAperiodic.py ├── plot_03_SimulateCombined.py ├── plot_04_SimulateModulated.py ├── plot_05_SimulateTransients.py ├── plot_06_SimParams.py └── plot_07_SimMulti.py ├── spectral ├── README.txt ├── plot_SpectralPower.py └── plot_SpectralVariance.py └── timefreq ├── README.txt ├── plot_InstantaneousMeasures.py └── plot_MorletWavelet.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE requirements.txt 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/README.rst -------------------------------------------------------------------------------- /data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/data/README.txt -------------------------------------------------------------------------------- /data/sample_data_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/data/sample_data_1.npy -------------------------------------------------------------------------------- /data/sample_data_1_filt.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/data/sample_data_1_filt.npy -------------------------------------------------------------------------------- /data/sample_data_2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/data/sample_data_2.npy -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /doc/_templates/autosummary/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/_templates/autosummary/function.rst -------------------------------------------------------------------------------- /doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/_templates/layout.html -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/changelog.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/contents.rst -------------------------------------------------------------------------------- /doc/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/glossary.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- 1 | 2 | .. include:: ../README.rst 3 | -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/logo.png -------------------------------------------------------------------------------- /doc/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/doc/reference.rst -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/plot_mne_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/examples/plot_mne_example.py -------------------------------------------------------------------------------- /neurodsp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/__init__.py -------------------------------------------------------------------------------- /neurodsp/aperiodic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/aperiodic/__init__.py -------------------------------------------------------------------------------- /neurodsp/aperiodic/autocorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/aperiodic/autocorr.py -------------------------------------------------------------------------------- /neurodsp/aperiodic/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/aperiodic/conversions.py -------------------------------------------------------------------------------- /neurodsp/aperiodic/dfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/aperiodic/dfa.py -------------------------------------------------------------------------------- /neurodsp/aperiodic/irasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/aperiodic/irasa.py -------------------------------------------------------------------------------- /neurodsp/burst/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/burst/__init__.py -------------------------------------------------------------------------------- /neurodsp/burst/dualthresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/burst/dualthresh.py -------------------------------------------------------------------------------- /neurodsp/burst/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/burst/utils.py -------------------------------------------------------------------------------- /neurodsp/filt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/filt/__init__.py -------------------------------------------------------------------------------- /neurodsp/filt/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/filt/checks.py -------------------------------------------------------------------------------- /neurodsp/filt/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/filt/filter.py -------------------------------------------------------------------------------- /neurodsp/filt/fir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/filt/fir.py -------------------------------------------------------------------------------- /neurodsp/filt/iir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/filt/iir.py -------------------------------------------------------------------------------- /neurodsp/filt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/filt/utils.py -------------------------------------------------------------------------------- /neurodsp/plts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/__init__.py -------------------------------------------------------------------------------- /neurodsp/plts/aperiodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/aperiodic.py -------------------------------------------------------------------------------- /neurodsp/plts/combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/combined.py -------------------------------------------------------------------------------- /neurodsp/plts/filt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/filt.py -------------------------------------------------------------------------------- /neurodsp/plts/rhythm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/rhythm.py -------------------------------------------------------------------------------- /neurodsp/plts/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/settings.py -------------------------------------------------------------------------------- /neurodsp/plts/spectral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/spectral.py -------------------------------------------------------------------------------- /neurodsp/plts/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/style.py -------------------------------------------------------------------------------- /neurodsp/plts/time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/time_series.py -------------------------------------------------------------------------------- /neurodsp/plts/timefrequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/timefrequency.py -------------------------------------------------------------------------------- /neurodsp/plts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/plts/utils.py -------------------------------------------------------------------------------- /neurodsp/rhythm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/rhythm/__init__.py -------------------------------------------------------------------------------- /neurodsp/rhythm/lc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/rhythm/lc.py -------------------------------------------------------------------------------- /neurodsp/rhythm/swm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/rhythm/swm.py -------------------------------------------------------------------------------- /neurodsp/sim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/__init__.py -------------------------------------------------------------------------------- /neurodsp/sim/aperiodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/aperiodic.py -------------------------------------------------------------------------------- /neurodsp/sim/combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/combined.py -------------------------------------------------------------------------------- /neurodsp/sim/cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/cycles.py -------------------------------------------------------------------------------- /neurodsp/sim/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/generators.py -------------------------------------------------------------------------------- /neurodsp/sim/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/info.py -------------------------------------------------------------------------------- /neurodsp/sim/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/io.py -------------------------------------------------------------------------------- /neurodsp/sim/modulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/modulate.py -------------------------------------------------------------------------------- /neurodsp/sim/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/multi.py -------------------------------------------------------------------------------- /neurodsp/sim/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/params.py -------------------------------------------------------------------------------- /neurodsp/sim/periodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/periodic.py -------------------------------------------------------------------------------- /neurodsp/sim/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/signals.py -------------------------------------------------------------------------------- /neurodsp/sim/transients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/transients.py -------------------------------------------------------------------------------- /neurodsp/sim/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/update.py -------------------------------------------------------------------------------- /neurodsp/sim/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/sim/utils.py -------------------------------------------------------------------------------- /neurodsp/spectral/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/spectral/__init__.py -------------------------------------------------------------------------------- /neurodsp/spectral/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/spectral/checks.py -------------------------------------------------------------------------------- /neurodsp/spectral/measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/spectral/measures.py -------------------------------------------------------------------------------- /neurodsp/spectral/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/spectral/power.py -------------------------------------------------------------------------------- /neurodsp/spectral/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/spectral/utils.py -------------------------------------------------------------------------------- /neurodsp/spectral/variance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/spectral/variance.py -------------------------------------------------------------------------------- /neurodsp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test code for NeuroDSP.""" -------------------------------------------------------------------------------- /neurodsp/tests/aperiodic/test_autocorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/aperiodic/test_autocorr.py -------------------------------------------------------------------------------- /neurodsp/tests/aperiodic/test_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/aperiodic/test_conversions.py -------------------------------------------------------------------------------- /neurodsp/tests/aperiodic/test_dfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/aperiodic/test_dfa.py -------------------------------------------------------------------------------- /neurodsp/tests/aperiodic/test_irasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/aperiodic/test_irasa.py -------------------------------------------------------------------------------- /neurodsp/tests/burst/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurodsp/tests/burst/test_dualthresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/burst/test_dualthresh.py -------------------------------------------------------------------------------- /neurodsp/tests/burst/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/burst/test_utils.py -------------------------------------------------------------------------------- /neurodsp/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/conftest.py -------------------------------------------------------------------------------- /neurodsp/tests/filt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurodsp/tests/filt/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/filt/test_checks.py -------------------------------------------------------------------------------- /neurodsp/tests/filt/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/filt/test_filter.py -------------------------------------------------------------------------------- /neurodsp/tests/filt/test_fir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/filt/test_fir.py -------------------------------------------------------------------------------- /neurodsp/tests/filt/test_iir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/filt/test_iir.py -------------------------------------------------------------------------------- /neurodsp/tests/filt/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/filt/test_utils.py -------------------------------------------------------------------------------- /neurodsp/tests/plts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurodsp/tests/plts/test_aperiodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/plts/test_aperiodic.py -------------------------------------------------------------------------------- /neurodsp/tests/plts/test_combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/plts/test_combined.py -------------------------------------------------------------------------------- /neurodsp/tests/plts/test_filt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/plts/test_filt.py -------------------------------------------------------------------------------- /neurodsp/tests/plts/test_rhythm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/plts/test_rhythm.py -------------------------------------------------------------------------------- /neurodsp/tests/plts/test_spectral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/plts/test_spectral.py -------------------------------------------------------------------------------- /neurodsp/tests/plts/test_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/plts/test_style.py -------------------------------------------------------------------------------- /neurodsp/tests/plts/test_time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/plts/test_time_series.py -------------------------------------------------------------------------------- /neurodsp/tests/plts/test_timefrequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/plts/test_timefrequency.py -------------------------------------------------------------------------------- /neurodsp/tests/plts/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/plts/test_utils.py -------------------------------------------------------------------------------- /neurodsp/tests/rhythm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurodsp/tests/rhythm/test_lc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/rhythm/test_lc.py -------------------------------------------------------------------------------- /neurodsp/tests/rhythm/test_swm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/rhythm/test_swm.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_aperiodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_aperiodic.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_combined.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_cycles.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_generators.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_info.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_io.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_modulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_modulate.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_multi.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_params.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_periodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_periodic.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_signals.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_transients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_transients.py -------------------------------------------------------------------------------- /neurodsp/tests/sim/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/sim/test_update.py -------------------------------------------------------------------------------- /neurodsp/tests/spectral/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurodsp/tests/spectral/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/spectral/test_checks.py -------------------------------------------------------------------------------- /neurodsp/tests/spectral/test_measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/spectral/test_measures.py -------------------------------------------------------------------------------- /neurodsp/tests/spectral/test_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/spectral/test_power.py -------------------------------------------------------------------------------- /neurodsp/tests/spectral/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/spectral/test_utils.py -------------------------------------------------------------------------------- /neurodsp/tests/spectral/test_variance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/spectral/test_variance.py -------------------------------------------------------------------------------- /neurodsp/tests/timefrequency/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurodsp/tests/timefrequency/test_hilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/timefrequency/test_hilbert.py -------------------------------------------------------------------------------- /neurodsp/tests/timefrequency/test_wavelets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/timefrequency/test_wavelets.py -------------------------------------------------------------------------------- /neurodsp/tests/tsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/tsettings.py -------------------------------------------------------------------------------- /neurodsp/tests/tutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/tutils.py -------------------------------------------------------------------------------- /neurodsp/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurodsp/tests/utils/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/utils/test_checks.py -------------------------------------------------------------------------------- /neurodsp/tests/utils/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/utils/test_core.py -------------------------------------------------------------------------------- /neurodsp/tests/utils/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/utils/test_data.py -------------------------------------------------------------------------------- /neurodsp/tests/utils/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/utils/test_decorators.py -------------------------------------------------------------------------------- /neurodsp/tests/utils/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/utils/test_download.py -------------------------------------------------------------------------------- /neurodsp/tests/utils/test_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/utils/test_norm.py -------------------------------------------------------------------------------- /neurodsp/tests/utils/test_outliers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/utils/test_outliers.py -------------------------------------------------------------------------------- /neurodsp/tests/utils/test_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/utils/test_sim.py -------------------------------------------------------------------------------- /neurodsp/tests/utils/test_yielders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/tests/utils/test_yielders.py -------------------------------------------------------------------------------- /neurodsp/timefrequency/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/timefrequency/__init__.py -------------------------------------------------------------------------------- /neurodsp/timefrequency/hilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/timefrequency/hilbert.py -------------------------------------------------------------------------------- /neurodsp/timefrequency/wavelets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/timefrequency/wavelets.py -------------------------------------------------------------------------------- /neurodsp/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/utils/__init__.py -------------------------------------------------------------------------------- /neurodsp/utils/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/utils/checks.py -------------------------------------------------------------------------------- /neurodsp/utils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/utils/core.py -------------------------------------------------------------------------------- /neurodsp/utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/utils/data.py -------------------------------------------------------------------------------- /neurodsp/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/utils/decorators.py -------------------------------------------------------------------------------- /neurodsp/utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/utils/download.py -------------------------------------------------------------------------------- /neurodsp/utils/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/utils/norm.py -------------------------------------------------------------------------------- /neurodsp/utils/outliers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/utils/outliers.py -------------------------------------------------------------------------------- /neurodsp/utils/sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/utils/sim.py -------------------------------------------------------------------------------- /neurodsp/utils/yielders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/neurodsp/utils/yielders.py -------------------------------------------------------------------------------- /neurodsp/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.4.0-dev' 2 | -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/paper/paper.md -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | matplotlib -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/setup.py -------------------------------------------------------------------------------- /tutorials/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/README.txt -------------------------------------------------------------------------------- /tutorials/aperiodic/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/aperiodic/README.txt -------------------------------------------------------------------------------- /tutorials/aperiodic/plot_Autocorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/aperiodic/plot_Autocorr.py -------------------------------------------------------------------------------- /tutorials/aperiodic/plot_Fluctuations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/aperiodic/plot_Fluctuations.py -------------------------------------------------------------------------------- /tutorials/aperiodic/plot_IRASA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/aperiodic/plot_IRASA.py -------------------------------------------------------------------------------- /tutorials/burst/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/burst/README.txt -------------------------------------------------------------------------------- /tutorials/burst/plot_BurstDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/burst/plot_BurstDetection.py -------------------------------------------------------------------------------- /tutorials/filt/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/filt/README.txt -------------------------------------------------------------------------------- /tutorials/filt/plot_1_Filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/filt/plot_1_Filtering.py -------------------------------------------------------------------------------- /tutorials/filt/plot_2_FIR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/filt/plot_2_FIR.py -------------------------------------------------------------------------------- /tutorials/filt/plot_3_IIR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/filt/plot_3_IIR.py -------------------------------------------------------------------------------- /tutorials/filt/plot_4_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/filt/plot_4_checks.py -------------------------------------------------------------------------------- /tutorials/rhythm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/rhythm/README.txt -------------------------------------------------------------------------------- /tutorials/rhythm/plot_LaggedCoherence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/rhythm/plot_LaggedCoherence.py -------------------------------------------------------------------------------- /tutorials/rhythm/plot_SlidingWindowMatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/rhythm/plot_SlidingWindowMatching.py -------------------------------------------------------------------------------- /tutorials/sim/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/sim/README.txt -------------------------------------------------------------------------------- /tutorials/sim/plot_01_SimulatePeriodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/sim/plot_01_SimulatePeriodic.py -------------------------------------------------------------------------------- /tutorials/sim/plot_02_SimulateAperiodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/sim/plot_02_SimulateAperiodic.py -------------------------------------------------------------------------------- /tutorials/sim/plot_03_SimulateCombined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/sim/plot_03_SimulateCombined.py -------------------------------------------------------------------------------- /tutorials/sim/plot_04_SimulateModulated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/sim/plot_04_SimulateModulated.py -------------------------------------------------------------------------------- /tutorials/sim/plot_05_SimulateTransients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/sim/plot_05_SimulateTransients.py -------------------------------------------------------------------------------- /tutorials/sim/plot_06_SimParams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/sim/plot_06_SimParams.py -------------------------------------------------------------------------------- /tutorials/sim/plot_07_SimMulti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/sim/plot_07_SimMulti.py -------------------------------------------------------------------------------- /tutorials/spectral/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/spectral/README.txt -------------------------------------------------------------------------------- /tutorials/spectral/plot_SpectralPower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/spectral/plot_SpectralPower.py -------------------------------------------------------------------------------- /tutorials/spectral/plot_SpectralVariance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/spectral/plot_SpectralVariance.py -------------------------------------------------------------------------------- /tutorials/timefreq/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/timefreq/README.txt -------------------------------------------------------------------------------- /tutorials/timefreq/plot_InstantaneousMeasures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/timefreq/plot_InstantaneousMeasures.py -------------------------------------------------------------------------------- /tutorials/timefreq/plot_MorletWavelet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurodsp-tools/neurodsp/HEAD/tutorials/timefreq/plot_MorletWavelet.py --------------------------------------------------------------------------------