Skip to content
Snippets Groups Projects
Commit 70e376d5 authored by Peter Lünenschloß's avatar Peter Lünenschloß
Browse files

Merge branch 'develop' into dataprocessing_features

parents e1a5295e 47bba055
No related branches found
No related tags found
4 merge requests!193Release 1.4,!188Release 1.4,!49Dataprocessing features,!44Dataprocessing features
Subproject commit 0665773c1a86b018f79db7983494c198b77620fc
Subproject commit 8264b2540025709465b2db0c23a074d97e31182c
......@@ -156,9 +156,11 @@ def _plotMultipleVariables(
tlen = len(targets)
tgen = (t for t in targets)
nfig, ncols_rest = divmod(tlen, 5)
ncols = [4] * nfig + [ncols_rest]
nfig += 1
nfig, ncols_rest = divmod(tlen, 4)
ncols = [4] * nfig
if ncols_rest:
nfig += 1
ncols += [ncols_rest]
gs_kw = dict(width_ratios=_layout_data_to_table_ratio)
layout = dict(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment