Hello,
I have a mixed subplot with 2 rows. The first row has 1 column and the second row 2 columns. I used this code from Plotly and adapted it to my needs with this important change:
specs=[[{"type": "yx"}, None],
[{"type": "xy"}, {"type": "xy"}]])
This throws me an error:
The 'specs' argument to make_subplots must be a 2D list of dictionaries with dimensions (2 x 1).
Received value of type <class 'list'>: [[{'type': 'yx'}, None], [{'type': 'xy'}, {'type': 'xy'}]]
When I change it to 2 rows and 1 column it works fine. Any idea why it is not working?