“如何在Line-plot中显示两行数据点之间的差值?”

时间:2019-01-06 10:39:28

标签: python pandas matplotlib line-plot

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

我不知道如何显示两行之间的间隙值。

预期结果:

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()

2 个答案:

答案 0 :(得分:2)

如注释中所述,您可以使用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

如果将其应用于其他数据集,则可能必须对标签的位置进行调整。

答案 1 :(得分:0)

https://stackoverflow.com/a/54065121/12201993

同上回答,万一遇到这个问题-

<块引用>

类型错误:alpha 必须是浮点数或无

当包更新时,将 plt.fill_between 中的 alpha 更改为浮点数,例如:

pod install