Skip to content
Snippets Groups Projects
Commit 137ee551 authored by Claudio Zandonella's avatar Claudio Zandonella
Browse files

fix quarto plots

parent 4b972517
No related branches found
No related tags found
No related merge requests found
......@@ -1310,9 +1310,15 @@ def plot_cluster_comp_loop(
figsize=(4 * 3, 4.5 * nrows),
)
for c, cl in enumerate(data_plot.columns):
irow = floor(c / ncols)
icol = floor(c - (irow * ncols))
ax = axes[irow][icol]
if len(data_plot.columns) <= ncols:
ax = axes[icol]
else:
ax = axes[irow][icol]
plot_cluster_comp(
serie_plot = data_plot[cl],
......
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