gpt4 book ai didi

python - "How to show the value of differences between two line' 线图中的数据点?”

转载 作者:太空宇宙 更新时间:2023-11-04 02:08:53 25 4
gpt4 key购买 nike

我已经制作了一个线图,现在我想在图中的线图中显示两条线之间的差异/差距的值。

我不明白如何显示两条线之间的间隙值。

预期结果:

Expected result

我的结果:

My output result

数据框: dataframe image

我的代码:

import seaborn as sns
sns.set()
df_MFgrade4.plot(figsize=(15,8), marker='o', color=('#E8743B', '#5bc0de'))
plt.xlabel("Year", fontsize=14)
plt.ylabel("Average Mathematics Scale Score", fontsize=14)
plt.xticks(df_grade4["Year"].astype(int), size=13)
plt.yticks(df1, size=13)
plt.legend(fontsize=15)
plt.show()

最佳答案

如评论中所述,您可以使用 matplotlib.pyplot.fill_between得到行之间的填充。您还可以使用 matplotlib.pyplot.text 添加所需的标签。由于您没有在此处发布任何代码,因此这是一个通用示例来说明。

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(0, 10, 0.1)
ticks = np.arange(0, 10, 0.1)
y1 = np.zeros((len(x)))
y2 = np.zeros((len(x)))
xmax = 0.0
imax = 0
for ii in range(len(x)):
y1[ii] = 50 * ii - 5 * ii**2
y2[ii] = 50 * ii - 7 * ii**2
ticks[ii] = y1[ii]-y2[ii]
if (y1[ii] < 0.0):
xmax = x[ii]
imax = ii
break
ymax = max(y1)
fig = plt.figure(figsize=(8,4), dpi=300)
plt.plot(x, y1, 'g:')
plt.plot(x, y2, 'b:')
plt.ylim([0, ymax*1.05])
plt.xlim([0, xmax])
plt.fill_between(x, y1, y2, color='grey', alpha='0.3')
print imax
for ii in range(imax):
plt.text(x[ii], ymax*0.01, ticks[ii])
plt.show()

Matplotlib fill_between example plotting projectile motion

x 轴正上方的标签表示每个点的值之间的差异。

编辑

由于您来自 pandas DataFrame,为了实现您需要的情节的更细粒度控制,这可能是必要的,或者至少是方便的,将该 DataFrame 的列转换为列表并完全使用上述方法绘制,例如

import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import seaborn as sns
sns.set(font='Times New Roman')

d = {'Year' : [1990, 1992, 1996, 2000, 2003, 2005, 2007, 2009, 2011,
2013, 2015, 2017],
'Male' : [214, 221, 224, 227, 236, 239, 241, 241, 241, 242, 241, 241],
'Female': [213, 219, 223, 224, 233, 237, 239, 239, 240, 241, 239, 239]}

df = pd.DataFrame(d)

male = df['Male'].tolist()
female = df['Female'].tolist()
year = df['Year'].tolist()
ymax = max(male)
ymin = min(female)
fig = plt.figure(figsize=(16,10), dpi=300)

# ymin*0.99 should be changed according to the dataset
for ii in range(len(male)):
plt.text(year[ii]-0.1, ymin*0.99, male[ii]-female[ii], size=16)

plt.plot(year, male, marker=".", color="#5bc0de")
plt.plot(year, female, marker=".", color="#E8743B")
plt.ylim([ymin*0.985, ymax*1.01])
plt.fill_between(year, male, female, color="grey", alpha="0.3")
plt.yticks(male, size=16)
plt.xticks(year, size=16)
plt.title("Matplotlib fill_between() and text()
from pandas.DataFrame example", fontsize=20)
plt.show()

Example using pandas DataFrame

如果将其应用于不同的数据集,您可能需要调整标签的位置。

关于python - "How to show the value of differences between two line' 线图中的数据点?”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54060707/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com