Hi Folks,
I’ve been experimenting with the new subplot_mosaic functionality( loving the simplicity, btw) and I’ve hit a problem.
With this layout, constrained_layout=True copes just fine.
layout = “”"
BCCE
BCCE
BADE
“”"
However, with this layout (extending D to a 2x1), I get the warning shown below
layout = “”"
BCCE
BCCE
BADD
“”"
[WARNING]
UserWarning: constrained_layout not applied. At least one axes collapsed to zero width or height.
Can someone explain to me what might cause this?
Incidentally, D is just a stacked bar graph
and E is a simple bar graph.
I also get the same warning when I extend A to (2x1) instead of extending D.
layout = “”"
BCCE
BCCE
BAAD
“”"
Cheers
Laurence