1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
"""
This figure is meant to represent an event-type with Faces presented
at times [0,4,8,12,16] and Objects presented at [2,6,10,14,18].
There are two values for Y: one for 'Face' and one for 'Object'
"""
import numpy as np
import pylab
pylab.scatter([0,4,8,12,16], [1,1,1,1,1], c='r', marker='o', label='Face')
pylab.scatter([2,6,10,14,18], [0,0,0,0,0], c='b', marker='o', label='Object')
a = pylab.gca()
a.set_ylim([-0.1,1.1])
a.set_yticks([0,1])
a.set_yticklabels(['Object', 'Face'])
a.set_xlim([-0.5,10])
a.set_xlabel('Time')
|