# 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 design with
events at times [0,4,8,12,16] and amplitudes [0,1.1,2.3,0.9,0.3].
"""

import numpy as np
import pylab

pylab.scatter([0,4,8,12,16], [0,1.1,2.3,0.9,0.3], c='r', marker='o')

a = pylab.gca()
a.set_yticks([0,2])
a.set_xlabel('Time')
a.set_ylabel('Amplitude')
