如何为 Seaborn lmplot 添加标题?


要为 Seaborn Implot 添加标题,我们可以采取以下步骤:-

  • 设置图形大小并调整子图之间及周围的填充。
  • 创建一个包含两列(X 轴和 Y 轴)的 Pandas 数据框
  • 使用implot() 方法。
  • 使用gca() 方法获取当前轴。
  • 使用show() 方法显示图形。

示例

import pandas
import matplotlib.pylab as plt
import seaborn as sns
import numpy as np

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

df = pandas.DataFrame({"X-Axis": [np.random.randint(10) for i in range(10)], "Y-Axis": [i for i in range(10)]})

bar_plot = sns.lmplot(x='X-Axis', y='Y-Axis', data=df, height=3.5)

ax = plt.gca()

ax.set_title("Random Data Implot")

plt.show()

输出

更新时间:2021 年 6 月 5 日

927 次浏览

开启你的职业生涯

完成课程认证

开始吧
广告