Plot memory fingerprintΒΆ

This example plots a fingerprint. Briefly, a fingerprint can be described as a summary of how a subject organizes information with respect to the multiple features of the stimuli. In addition to presentation and recall data, a features object is passed to the Egg class. It is comprised of a dictionary for each presented stimulus that contains feature dimensions and values for each stimulus.

../_images/sphx_glr_plot_fingerprint_001.png
# Code source: Andrew Heusser
# License: MIT

#import
import quail

#load data
egg = quail.load('example')

# analyze and plot
fegg = egg.analyze('fingerprint', listgroup=['average']*8, features=['temporal'])

fegg.plot(title='Memory Fingerprint')

Total running time of the script: ( 0 minutes 20.454 seconds)

Gallery generated by Sphinx-Gallery