From 694c50d946f4458a78987d33aaf1c7f9000cb530 Mon Sep 17 00:00:00 2001 From: Stefan Appelhoff Date: Fri, 6 May 2022 16:11:58 +0200 Subject: [PATCH] minor, doc: fix subplot titles in tutorial --- .../stats-sensor-space/75_cluster_ftest_spatiotemporal.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tutorials/stats-sensor-space/75_cluster_ftest_spatiotemporal.py b/tutorials/stats-sensor-space/75_cluster_ftest_spatiotemporal.py index 9bb2595dc47..15a17a4f3a8 100644 --- a/tutorials/stats-sensor-space/75_cluster_ftest_spatiotemporal.py +++ b/tutorials/stats-sensor-space/75_cluster_ftest_spatiotemporal.py @@ -158,6 +158,9 @@ colorbar=False, mask_params=dict(markersize=10)) image = ax_topo.images[0] + # remove the title that would otherwise say "0.000 s" + ax_topo.set_title("") + # create additional axes (for ERF and colorbar) divider = make_axes_locatable(ax_topo)