溫馨提示×

Seaborn怎么在次坐標軸上繪制圖表

小億
96
2024-05-15 17:28:18
欄目: 編程語言

在Seaborn中,要在次坐標軸上繪制圖表,可以使用secondary_y參數(shù)來指定要在次坐標軸上繪制的數(shù)據(jù)。下面是一個簡單的示例:

import seaborn as sns
import matplotlib.pyplot as plt

# 創(chuàng)建示例數(shù)據(jù)
data = sns.load_dataset('tips')

# 創(chuàng)建畫布和坐標軸
fig, ax = plt.subplots()

# 繪制主要數(shù)據(jù)
sns.barplot(x='day', y='total_bill', data=data, ax=ax)

# 創(chuàng)建次坐標軸
ax2 = ax.twinx()

# 繪制次要數(shù)據(jù)
sns.lineplot(x='day', y='tip', data=data, color='red', ax=ax2)

plt.show()

在這個示例中,我們首先繪制了一個條形圖,顯示了每天的總賬單金額。然后我們創(chuàng)建了一個次坐標軸,并在次坐標軸上繪制了另一條線圖,顯示了每天的小費金額。通過使用ax.twinx()方法來創(chuàng)建次坐標軸,并將次坐標軸對象傳遞給sns.lineplot()函數(shù)的ax參數(shù),我們就可以在次坐標軸上繪制圖表了。

0