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.

[1]:
# Code source: Contextual Dynamics Laboratory
# License: MIT

#import
import quail

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

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

fegg.plot(title='Memory Fingerprint')
[1]:
<Axes: title={'center': 'Memory Fingerprint'}, xlabel='Feature', ylabel='Clustering score'>
../_images/auto_examples_plot_fingerprint_1_1.png