Plot probability of nth recallΒΆ

This example plots the probability of an item being recalled nth given its list position.

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

# import
import quail

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

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

fegg.plot(title='Probability of Recall')
[1]:
<Axes: title={'center': 'Probability of Recall'}, xlabel='Position', ylabel='Probability of recall: position 5'>
../_images/auto_examples_plot_pnr_1_1.png