各位大神:
Python---数据可视化 请教个问题:
make_subplots 中的specs 设置,我想第一行实现 主图 横跨两列,第二行 绘制一个饼图。
如何设置specs 能实现这个设置。 多谢!!!!
代码语言:javascript复制fig = make_subplots(rows=2, cols=2,
specs=[[{'type': 'xy'}, {'type': 'domain'}],
[{'type': 'xy'}, {'type': 'domain'}],],
# specs=[
# [{'colspan':2},None],
# [{},{}]],
subplot_titles=(Warehouse_selected 'Forging2022',
Warehouse_selected 'SupplierRate',
'ItemNo for Supplier_selected',
'ItemNo Rate for Supplier_selected'),
)