Skip to content

Commit

Permalink
title
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelgarcia committed Sep 27, 2023
1 parent c8579b5 commit 9dde376
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,8 @@ def plot_errors_several_benchmarks(benchmarks, axes=None, show_legend=True, colo
axes[2].plot(benchmark.spatial_bins, depth_error, label=benchmark.title, color=c)

ax0 = ax = axes[0]
ax.set_xlabel("time [s]")
ax.set_ylabel("error [um]")
ax.set_xlabel("Time [s]")
ax.set_ylabel("Error [μm]")
if show_legend:
ax.legend()
_simpleaxis(ax)
Expand All @@ -514,7 +514,7 @@ def plot_errors_several_benchmarks(benchmarks, axes=None, show_legend=True, colo

ax2 = axes[2]
ax2.set_yticks([])
ax2.set_xlabel("depth [um]")
ax2.set_xlabel("Depth [μm]")
# ax.set_ylabel('error')
channel_positions = benchmark.recording.get_channel_locations()
probe_y_min, probe_y_max = channel_positions[:, 1].min(), channel_positions[:, 1].max()
Expand Down

0 comments on commit 9dde376

Please sign in to comment.