要使用Plotly創(chuàng)建小提琴圖,首先需要導(dǎo)入相關(guān)的庫以及數(shù)據(jù)。然后使用plotly.express中的violin函數(shù)來創(chuàng)建小提琴圖。
下面是一個(gè)使用Plotly創(chuàng)建小提琴圖的示例代碼:
import plotly.express as px
import seaborn as sns
# 使用Seaborn庫中的數(shù)據(jù)集
tips = sns.load_dataset('tips')
# 創(chuàng)建小提琴圖
fig = px.violin(tips, x='day', y='total_bill', color='sex', box=True, points='all')
# 設(shè)置圖表標(biāo)題和橫縱軸標(biāo)簽
fig.update_layout(title='Total Bill by Day and Gender',
xaxis_title='Day',
yaxis_title='Total Bill')
# 顯示圖表
fig.show()
運(yùn)行以上代碼,即可在瀏覽器中顯示出一個(gè)小提琴圖,展示了不同日期和性別對(duì)賬單總額的分布情況??梢愿鶕?jù)自己的數(shù)據(jù)和需求,調(diào)整參數(shù)來定制自己的小提琴圖。