Skip to content

henrymj/stopsignalmetrics

Repository files navigation

stopsignalmetrics

Python package codecov

This is a package to streamline common computations on behavioral data from experiments using Stop Signal tasks. It is made up of multiple classes which focus on different types of metrics. All classes follow the scikit-learn fit, transform schema.

0. StopData - Preprocessing and Standardization.

This class will be initialized with a nested dictionary, mapping columns (e.g. the SSD and RT columns) and key_codes (e.g. labels for stop and go trials in the condition column) from the current data onto a standard. See stopsignalmetrics/standards.json or the examples to get a sense of this mapping. It will also compute choice accuracy if a choice accuracy column is not found, or compute_acc_col=True is passed in at intialization.

1. SSRTmodel - Stop Signal Reaction Time (SSRT) Computation.

The SSRTmodel class contains 4 methods of Stop Signal Reaction Time (SSRT) computation:

  • Integration with Replacement ("replacement")
    This method replaces go omissions with the max reaction time before getting the nth_RT. This is the recommended method from Verbruggen et al. (2019). The other 3 methods are included for completeness and comparison, but in general we agree with Verbruggen et al. 2019 that the Integration with Replacement method is preferred.

  • Integration with Omission Rate Adjustment ("omission")
    This method uses the omission rate on go trials to adjust the P(respond | signal) before getting the nth_index.

  • Integration ("integration")
    A vanilla version of the above two methods which makes no adjustment based on omissions.

  • Mean ("mean")
    SSRT = mean_go_RT - mean_SSD. This method is based upon the assumption that the race between the go and stop process is tied, which should be the case when the common 1-up-1-down tracking method (Levitt, 1971) is used.

Addionally, fitting the SSRTmodel will return the components required to compute SSRT via the various methods (e.g. P(respond|signal), mean SSD, mean go RT, omission count and omission rate). It will also return metrics which aren't necessary for SSRT computation, but which can easily be computed using the architecture of the package, such as go and stop-failure choice accuracy, and mean stop-failure RT.

2. Sequence - Examining Trial-by-Trial Fluctuations.

This module is designed to analyze the data in the format of triplets of trials, with the central trials being chosen based on a research-question-based criteria (e.g. stop-failures). There are currently 3 classes.

  • Sequence
    This class will produces dataframes with triples of trials centered on trials based on an array-like list of indices or a query string. It is the backbone of the following methods.

  • Post Stop Slowing
    This class examines the change in go reaction times after a stop trial (i.e., RT on the trial immediately preceding a stop trial and subtracting it from RT on the trial immediately following a stop trial) . By default it will use all stop trials, but users can specify focusing on stop-success or stop-failure trials.

  • Violations
    This class compares stop-failure RTs to the preceding trial's correct go RTs, calculating a "mean violation" per SSD, with some thresholding to reduce noise.

3. StopSummary - Describing a Stop Dataset.

The StopSummary class computes every metric currently available, including a mean post-stop-slowing for each stop type ('all', 'success', 'fail'). It also attempts to compute a mean violation, thresholding at SSDs < 200ms.

Notes

This package assumes that non-responses (omissions; correct stops) are coded as values <= 0 or NaNs.

Sequential functions assume that each trial is one row. This is not necessarily the case for other functions, which can handle irrelevant rows related to cue/instruction presentations or ITIs.

Bibliography

Verbruggen, F., Aron, A. R., Band, G. P., Beste, C., Bissett, P. G., Brockett, A. T., ... & Colzato, L. S. (2019). A consensus guide to capturing the ability to inhibit actions and impulsive behaviors in the stop-signal task. Elife, 8, e46323.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages