在 seaborn 的线图中为图表下方的区域着色?

Coloring the area under the graph in lineplot of seaborn?

我使用 seaborn 的线图从数据中绘制出来,其代码如下所示:

sns.lineplot( x=df["#Energy"], y=df["py"]+df["px"]+df["pz"])

而我得到的情节是

现在我想把它下面的区域涂成不透明的蓝色,我该怎么做 我在 seaborn lineplot 文档中找不到与此相关的任何内容 感谢所有帮助的努力

seaborn好像没有这个功能。但是,您可以使用 plt.fill_between:

import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt

df = pd.DataFrame([[0, 0], [1, 1], [2, 0]], columns=['x', 'y'])

fig, ax = plt.subplots()
sns.lineplot(x=df['x'], y=df['y'], ax=ax)
ax.fill_between(df['x'], df['y'], alpha=0.2)
plt.show()

它产生以下内容: