Skip to main content

Toolbox for Dynamic Time Warping based latency differences and temporal correlations between two time series for neuroscience

Project description

Python NeuroWarp

Python NeuroWarp is provided as a package that can be installed via PyPi. It consists of two functions that can be called after importing neurowarp: timeseries_correlation and latency_difference - these are the general-purpose scripts enable the DTW analyses presented in Transient Attention Gates Access Consciousness: Coupling N2pc and P3 Latencies using Dynamic Time Warping.

Installation

We recommend that you create a new virtual environment for our module via:

  1. Open a terminal / cmd.exe window, navigate (via cd) to the directory you want to create the environment and enter: python -m venv neurowarp_env

  2. Activate the neurowarp_env via:

    Windows: path\to\neurowarp_env\Scripts\activate

    MacOS: source neurowarp_env/bin/activate

  3. Install neurowarp via pip (enter while neurowarp_env is active): pip install neurowarp

  4. The functions can be used as explained below after importing the module

For more detail on virtual environments & pip click here

DTW Temporal Correlation - neurowarp.timeseries_correlation()

Perform a DTW based bootstrap analysis to assess the temporal correlation between two time series (Figure 5 of our paper).

Important Notes

  • Time series must be 2D matrices
    • I.e., data points (e.g. time) x subjects (i.e., replications)
  • We provide the ERPs of correct and intrusion trials for users to explore this function

Running timeseries_correlation using our ERPs

Enter the following into Python and make sure to enter your actual paths!

  1. import neurowarp
  2. from scipy.io import loadmat
  3. data = loadmat("your/path/to/example_series_N2pcP3s")
  4. series_1 = data["P3_Correct"]
  5. series_2 = data["N2pc_Correct"]
  6. name_1 = "P3"
  7. name_2 = "N2pc"
  8. savepath = "where/to/store/results/to"
  9. num_boots = 10000
    • The number of bootstrap samples that you want to implement
  10. outlier = 0
    • Exclude outliers if their DTW area is +-5 standard deviations from the mean
  11. try_to_fix_ylims = 1
    • Attempt to standardise y-limits of marginals
  12. neurowarp.timeseries_correlation(series_1, series_2, name_1, name_2, savepath, num_boots, outlier, try_to_fix_ylims)

Note that the figure will look slightly different to that of our paper due to different x/y limits. See the replicate_figures folder if you want to replicate our figure as it was printed.

DTW Latency Difference - neurowarp.latency_difference()

Assess the latency difference between two conditions (i.e., within-subjects effect) or between two groups (i.e., across-subjects effect) of any signal of interest (in milliseconds).

Figures 3 & 4 of our paper show a two conditions analysis

Important Notes

  • Reference and query time series must be 2D matrices
    • I.e., data points (e.g., time) x subjects (i.e., replications)
    • Time series have to be of equal sizes
  • analysis_design determines whether you want to assess a within- or between-subjects latency effect (can only take “within” or “between” as input)
  • We provide the ERPs of correct and intrusion trials for users to explore this function

Running timeseries_correlation using our ERPs

Enter the following into Python and make sure to enter your actual paths!

  1. import neurowarp
  2. from scipy.io import loadmat
  3. data = loadmat("your/path/to/example_series_N2pcP3s")
  4. analysis_design = "within"
  5. query = data["N2pc_Intrusion"]
  6. reference = data["N2pc_Correct"]
  7. name_query = "Intrusion"
  8. name_reference = "Correct"
  9. units = "\u03BCV"
    • The units that your signals are measured in (in our case micro volts)
  10. sampling_rate = 500
    • The number of data points per second in Hertz
  11. savepath = "where/to/store/results/to"
  12. permutations = 10000
    • The number of permutations you would like to implement in statistical testing (we recommend >=10000)
  13. neurowarp.latency_difference(analysis_design, query, reference, name_query, name_reference,units, sampling_rate, savepath, permutations)

Dependencies

Python NeuroWarp requires the following toolboxes which are automatically installed via pip install neurowarp

  • Numpy
  • Matplotlib
  • Tslearn
  • Scipy

Tests

Python NeuroWarp was tested with Python 3.10.9.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

neurowarp-0.0.3.tar.gz (154.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

neurowarp-0.0.3-py3-none-any.whl (13.4 kB view details)

Uploaded Python 3

File details

Details for the file neurowarp-0.0.3.tar.gz.

File metadata

  • Download URL: neurowarp-0.0.3.tar.gz
  • Upload date:
  • Size: 154.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for neurowarp-0.0.3.tar.gz
Algorithm Hash digest
SHA256 7ceae65438db007198d1a0d960b6811e82df856313e4cbb1c1fd9883c12dbac1
MD5 8d3b05d5e5a2040f86e961c526fa4c6a
BLAKE2b-256 695061dea81e1b244ef9bc47438027fead2bd35822036312c209b9b69b3e6fc2

See more details on using hashes here.

File details

Details for the file neurowarp-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: neurowarp-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 13.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for neurowarp-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 eb55bf6e05d7bc1dd5f415bf1cd55be7b75298fd2b8cba0944639a027113ef07
MD5 8ed9068b4aa0f5577537f13b333f8ccd
BLAKE2b-256 d80b22d1e00f43f19d7c7e8d51ad7ec0f5166f32d90d2c214ee676e39274137f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page