使用Plotly創建面積圖可以通過以下步驟實現:
import plotly.graph_objects as go
x = [1, 2, 3, 4, 5]
y = [10, 15, 13, 17, 20]
fig = go.Figure(data=go.Scatter(x=x, y=y, mode='lines', fill='tozeroy'))
fig.update_layout(title='Area Chart', xaxis_title='X Axis', yaxis_title='Y Axis')
fig.show()
通過以上步驟,可以使用Plotly創建一個簡單的面積圖并顯示出來。可以根據需要對數據和圖表樣式進行進一步的定制化。