Skip to content

Commit b6c5565

Browse files
committed
small detail: defaulted t-test plot axis labels to x: None, y: Information Gain
1 parent 72f7c70 commit b6c5565

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csep/utils/plots.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1708,8 +1708,8 @@ def plot_comparison_test(results_t, results_w=None, axes=None, plot_args=None):
17081708

17091709
figsize = plot_args.get('figsize', None)
17101710
title = plot_args.get('title', 'CSEP1 Comparison Test')
1711-
xlabel = plot_args.get('xlabel', 'X')
1712-
ylabel = plot_args.get('ylabel', 'Y')
1711+
xlabel = plot_args.get('xlabel', None)
1712+
ylabel = plot_args.get('ylabel', 'Information gain per earthquake')
17131713
ylim = plot_args.get('ylim', (None, None))
17141714
capsize = plot_args.get('capsize', 2)
17151715
linewidth = plot_args.get('linewidth', 1)

0 commit comments

Comments
 (0)