使用 Seaborn 绘制 Pandas DataFrame 的多列


要使用 Seaborn 绘制 Pandas DataFrame 的多列,我们可以执行以下步骤:

  • 使用 Pandas 制作一个数据框。

  • 使用 Seaborn 的 barplot() 方法绘制一个条形图。

  • xticks 标签旋转 45 度

  • 使用 show() 方法显示图形。

示例

import pandas
import matplotlib.pylab as plt
import seaborn as sns
import numpy as np
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
df = pandas.DataFrame({"X-Axis": [np.random.randint(10) for i in range(10)], "YAxis": [i for i in range(10)]})
bar_plot = sns.barplot(x='X-Axis', y='Y-Axis', data=df)
plt.xticks(rotation=45)
plt.show()

输出

更新日期:2021 年 5 月 8 日

1K+ 浏览

开启你的 事业

完成课程获得认证

开始
广告