我发现这种非常酷和有用的方式(我是Python的新手)来做表。
import plotly.graph_objects as go
fig = go.Figure(data=[go.Table(
header=dict(values=['Column1', 'Column2'],
line_color='rgb(255,255,255)',
fill_color='rgb(230,100,100)',
align='left'),
cells=dict(values=[[100, 90, 80, 90], # 1st column
[95, 85, 75, 95]], # 2nd column
line_color='rgb(255,255,255)',
fill_color= 'rgb(255,255,255)',
align='left'))
])
fig.update_layout(width=500, height=300)
fig.show()
不幸的是,我找不到将其另存为png的方法,有没有办法?
仅使用write_image()
功能。请参阅文档:https://plot.ly/python/static-image-export/