From e7a9be2c343ce2fc0d8ea3d957da3db58c906cb3 Mon Sep 17 00:00:00 2001 From: Gabriel Studer <gabriel.studer@unibas.ch> Date: Wed, 17 Nov 2021 08:44:31 +0100 Subject: [PATCH] replace basex kwarg with base in plt.xscale call (basex is deprecated) --- modules/base/pymod/table.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/base/pymod/table.py b/modules/base/pymod/table.py index 6c9a039f9..5f293c4ae 100644 --- a/modules/base/pymod/table.py +++ b/modules/base/pymod/table.py @@ -2960,9 +2960,8 @@ Statistics for column %(col)s plt.ylabel(y_title, size='x-large') plt.xlabel(x_title, size='x-large') - plt.xscale('log', basex=10) + plt.xscale('log', base=10) plt.xlim(0.001, 1.0) - if save: plt.savefig(save) -- GitLab