1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
|
"""
Simple tools for plotting Neo-format data.
These tools are intended for quickly producing basic plots with simple
formatting. If you need to produce more complex and/or publication-quality
figures, it will probably be easier to use matplotlib or another plotting
package directly rather than trying to extend this module.
:copyright: Copyright 2006-2022 by the PyNN team, see AUTHORS.
:license: CeCILL, see LICENSE for details.
"""
import sys
from collections import defaultdict
from numbers import Number
from itertools import repeat
from os import path, makedirs
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec
import numpy as np
from quantities import ms
from neo import AnalogSignal, IrregularlySampledSignal, SpikeTrain
from neo.core.spiketrainlist import SpikeTrainList
DEFAULT_FIG_SETTINGS = {
'lines.linewidth': 0.5,
'axes.linewidth': 0.5,
'axes.labelsize': 'small',
'legend.fontsize': 'small',
'font.size': 8,
'savefig.dpi': 150,
}
def handle_options(ax, options):
if "xticks" not in options or options.pop("xticks") is False:
plt.setp(ax.get_xticklabels(), visible=False)
if "xlabel" in options:
ax.set_xlabel(options.pop("xlabel"))
if "yticks" not in options or options.pop("yticks") is False:
plt.setp(ax.get_yticklabels(), visible=False)
if "ylabel" in options:
ax.set_ylabel(options.pop("ylabel"))
if "ylim" in options:
ax.set_ylim(options.pop("ylim"))
if "xlim" in options:
ax.set_xlim(options.pop("xlim"))
def plot_signal(ax, signal, index=None, label='', **options):
"""
Plot a single channel from an AnalogSignal.
"""
if "ylabel" in options:
if options["ylabel"] == "auto":
options["ylabel"] = "%s (%s)" % (signal.name,
signal.units._dimensionality.string)
handle_options(ax, options)
if index is None:
label = "%s (Neuron %d)" % (label, signal.array_annotations["channel_index"] or 0)
else:
label = "%s (Neuron %d)" % (label, signal.array_annotations["channel_index"][index])
signal = signal[:, index]
ax.plot(signal.times.rescale(ms), signal.magnitude, label=label, **options)
ax.legend()
def plot_signals(ax, signal_array, label_prefix='', **options):
"""
Plot all channels in an AnalogSignal in a single panel.
"""
if "ylabel" in options:
if options["ylabel"] == "auto":
options["ylabel"] = "%s (%s)" % (signal_array.name,
signal_array.units._dimensionality.string)
handle_options(ax, options)
offset = options.pop("y_offset", None)
show_legend = options.pop("legend", True)
if "channel_index" in signal_array.array_annotations:
channel_iterator = signal_array.array_annotations["channel_index"].argsort()
else:
channel_iterator = range(signal_array.shape[1])
for i in channel_iterator:
if "channel_index" in signal_array.array_annotations:
channel = signal_array.array_annotations["channel_index"][i]
if label_prefix:
label = "%s (Neuron %d)" % (label_prefix, channel)
else:
label = "Neuron %d" % channel
elif label_prefix:
label = "%s (%d)" % (label_prefix, i)
else:
label = str(i)
signal = signal_array[:, i]
if offset:
signal += i * offset
ax.plot(signal.times.rescale(ms), signal.magnitude, label=label, **options)
if show_legend:
ax.legend()
def plot_spiketrains(ax, spiketrains, label='', **options):
"""
Plot all spike trains in a Segment in a raster plot.
"""
ax.set_xlim(spiketrains[0].t_start, spiketrains[0].t_stop / ms)
handle_options(ax, options)
max_index = 0
min_index = sys.maxsize
for spiketrain in spiketrains:
ax.plot(spiketrain,
np.ones_like(spiketrain) * spiketrain.annotations['source_index'],
'k.', **options)
max_index = max(max_index, spiketrain.annotations['source_index'])
min_index = min(min_index, spiketrain.annotations['source_index'])
ax.set_ylabel("Neuron index")
ax.set_ylim(-0.5 + min_index, max_index + 0.5)
if label:
plt.text(0.95, 0.95, label,
transform=ax.transAxes, ha='right', va='top',
bbox=dict(facecolor='white', alpha=1.0))
def plot_spiketrainlist(ax, spiketrains, label='', **options):
"""
Plot all spike trains in a Segment in a raster plot.
"""
ax.set_xlim(spiketrains.t_start, spiketrains.t_stop / ms)
handle_options(ax, options)
channel_ids, spike_times = spiketrains.multiplexed
max_id = max(spiketrains.all_channel_ids)
min_id = min(spiketrains.all_channel_ids)
ax.plot(channel_ids, spike_times, 'k.', **options)
ax.set_ylabel("Neuron index")
ax.set_ylim(-0.5 + min_id, max_id + 0.5)
if label:
plt.text(0.95, 0.95, label,
transform=ax.transAxes, ha='right', va='top',
bbox=dict(facecolor='white', alpha=1.0))
def plot_array_as_image(ax, arr, label='', **options):
"""
Plots a numpy array as an image.
"""
handle_options(ax, options)
show_legend = options.pop("legend", True)
plt.pcolormesh(arr, **options)
ax.set_aspect('equal')
if label:
plt.text(0.95, 0.95, label,
transform=ax.transAxes, ha='right', va='top',
bbox=dict(facecolor='white', alpha=1.0))
if show_legend:
plt.colorbar()
def scatterplot(ax, data_table, label='', **options):
handle_options(ax, options)
if options.pop("show_fit", False):
plt.plot(data_table.x, data_table.y_fit, 'k-')
plt.scatter(data_table.x, data_table.y, **options)
if label:
plt.text(0.95, 0.95, label,
transform=ax.transAxes, ha='right', va='top',
bbox=dict(facecolor='white', alpha=1.0))
def plot_hist(ax, histogram, label='', **options):
handle_options(ax, options)
for t, n in histogram:
ax.bar(t, n, width=histogram.bin_width, color=None)
if label:
plt.text(0.95, 0.95, label,
transform=ax.transAxes, ha='right', va='top',
bbox=dict(facecolor='white', alpha=1.0))
def variable_names(segment):
"""
List the names of all the AnalogSignals (used for the variable name by
PyNN) in the given segment.
"""
return set(signal.name for signal in segment.analogsignals)
class Figure(object):
"""
Provide simple, declarative specification of multi-panel figures.
Example::
Figure(
Panel(segment.filter(name="v")[0], ylabel="Membrane potential (mV)")
Panel(segment.spiketrains, xlabel="Time (ms)"),
title="Network activity",
).save("figure3.png")
Valid options are:
`settings`:
for figure settings, e.g. {'font.size': 9}
`annotations`:
a (multi-line) string to be printed at the bottom of the figure.
`title`:
a string to be printed at the top of the figure.
"""
def __init__(self, *panels, **options):
n_panels = len(panels)
if "settings" in options and options["settings"] is not None:
settings = options["settings"]
else:
settings = DEFAULT_FIG_SETTINGS
plt.rcParams.update(settings)
width, height = options.get("size", (6, 2 * n_panels + 1.2))
self.fig = plt.figure(1, figsize=(width, height))
gs = gridspec.GridSpec(n_panels, 1)
if "annotations" in options:
gs.update(bottom=1.2 / height) # leave space for annotations
gs.update(top=1 - 0.8 / height, hspace=0.25)
# print(gs.get_grid_positions(self.fig))
for i, panel in enumerate(panels):
panel.plot(plt.subplot(gs[i, 0]))
if "title" in options:
self.fig.text(0.5, 1 - 0.5 / height, options["title"],
ha="center", va="top", fontsize="large")
if "annotations" in options:
plt.figtext(0.01, 0.01, options["annotations"], fontsize=6, verticalalignment='bottom')
def save(self, filename):
"""
Save the figure to file. The format is taken from the file extension.
"""
dirname = path.dirname(filename)
if dirname and not path.exists(dirname):
makedirs(dirname)
self.fig.savefig(filename)
def show(self):
plt.show()
class Panel(object):
"""
Represents a single panel in a multi-panel figure.
A panel is a Matplotlib Axes or Subplot instance. A data item may be an
AnalogSignal, AnalogSignal, or a list of SpikeTrains. The Panel will
automatically choose an appropriate representation. Multiple data items may
be plotted in the same panel.
Valid options are any valid Matplotlib formatting options that should be
applied to the Axes/Subplot, plus in addition:
`data_labels`:
a list of strings of the same length as the number of data items.
`line_properties`:
a list of dicts containing Matplotlib formatting options, of the
same length as the number of data items.
"""
def __init__(self, *data, **options):
self.data = list(data)
self.options = options
self.data_labels = options.pop("data_labels", repeat(None))
self.line_properties = options.pop("line_properties", repeat({}))
def plot(self, axes):
"""
Plot the Panel's data in the provided Axes/Subplot instance.
"""
for datum, label, properties in zip(self.data, self.data_labels, self.line_properties):
properties.update(self.options)
if isinstance(datum, DataTable):
scatterplot(axes, datum, label=label, **properties)
elif isinstance(datum, Histogram):
plot_hist(axes, datum, label=label, **properties)
elif isinstance(datum, (AnalogSignal, IrregularlySampledSignal)):
plot_signals(axes, datum, label_prefix=label, **properties)
elif isinstance(datum, list) and len(datum) > 0 and isinstance(datum[0], SpikeTrain):
plot_spiketrains(axes, datum, label=label, **properties)
elif isinstance(datum, SpikeTrainList):
plot_spiketrainlist(axes, datum, label=label, **properties)
elif isinstance(datum, np.ndarray):
if datum.ndim == 2:
plot_array_as_image(axes, datum, label=label, **properties)
else:
raise Exception("Can't handle arrays with %s dimensions" % datum.ndim)
else:
raise Exception("Can't handle type %s" % type(datum))
def comparison_plot(segments, labels, title='', annotations=None,
fig_settings=None, with_spikes=True):
"""
Given a list of segments, plot all the data they contain so as to be able
to compare them.
Return a Figure instance.
"""
variables_to_plot = set.union(*(variable_names(s) for s in segments))
print("Plotting the following variables: %s" % ", ".join(variables_to_plot))
# group signal arrays by name
n_seg = len(segments)
by_var_and_channel = defaultdict(lambda: defaultdict(list))
line_properties = []
units = {}
for k, (segment, label) in enumerate(zip(segments, labels)):
lw = 2 * (n_seg - k) - 1
col = 'bcgmkr'[k % 6]
line_properties.append({"linewidth": lw, "color": col})
for array in segment.analogsignals:
# rescale signals to the same units, for a given variable name
if array.name not in units:
units[array.name] = array.units
elif array.units != units[array.name]:
array = array.rescale(units[array.name])
for i in array.array_annotations["channel_index"].argsort():
channel = array.array_annotations["channel_index"][i]
signal = array[:, i]
by_var_and_channel[array.name][channel].append(signal)
# each panel plots the signals for a given variable.
panels = []
for by_channel in by_var_and_channel.values():
for array_list in by_channel.values():
ylabel = array_list[0].name
if ylabel:
ylabel += " ({})".format(array_list[0].dimensionality)
panels.append(
Panel(*array_list,
line_properties=line_properties,
yticks=True,
ylabel=ylabel,
data_labels=labels))
if with_spikes and len(segments[0].spiketrains) > 0:
panels += [Panel(segment.spiketrains, data_labels=[label])
for segment, label in zip(segments, labels)]
panels[-1].options["xticks"] = True
panels[-1].options["xlabel"] = "Time (ms)"
fig = Figure(*panels,
title=title,
settings=fig_settings,
annotations=annotations)
return fig
class DataTable(object):
"""A lightweight encapsulation of x, y data for scatterplots."""
def __init__(self, x, y):
self.x = x
self.y = y
def fit_curve(self, f, p0, **fitting_parameters):
from scipy.optimize import curve_fit
self._f = f
self._p0 = p0
self._popt, self._pcov = curve_fit(f, self.x, self.y, p0, **fitting_parameters)
return self._popt, self._pcov
@property
def y_fit(self):
return self._f(self.x, *self._popt)
class Histogram(object):
"""A lightweight encapsulation of histogram data."""
def __init__(self, data):
self.data = data
self.evaluated = False
def evaluate(self):
if not self.evaluated:
n_bins = int(np.sqrt(len(self.data)))
self.values, self.bins = np.histogram(self.data, bins=n_bins)
self.bin_width = self.bins[1] - self.bins[0]
self.evaluated = True
def __iter__(self):
"""Iterate over the bars of the histogram"""
self.evaluate()
for x, y in zip(self.bins[:-1], self.values):
yield (x, y)
def isi_histogram(segment):
all_isis = np.concatenate([np.diff(np.array(st)) for st in segment.spiketrains])
return Histogram(all_isis)
|