因此,使用下面的代码,我可以用 3 行绘制一个图形,但它们是有角度的。是否可以平滑线条?

import matplotlib.pyplot as plt
import pandas as pd

# Dataframe consist of 3 columns
df['year'] = ['2005, 2005, 2005, 2015, 2015, 2015, 2030, 2030, 2030']
df['name'] = ['A', 'B', 'C', 'A', 'B', 'C', 'A', 'B', 'C']
df['weight'] = [80, 65, 88, 65, 60, 70, 60, 55, 65]
fig,ax = plt.subplots()

# plot figure to see how the weight develops through the years
for name in ['A','B','C']:
    ax.plot(df[df.name==name].year,df[df.name==name].weight,label=name)

ax.set_xlabel("year")
ax.set_ylabel("weight")
ax.legend(loc='best')

最佳答案

你应该对你的数据应用插值,它不应该是“线性的”。在这里,我使用 scipy 的 interp1d 应用了“三次”插值。另外,请注意,对于使用三次插值,您的数据应至少有 4 个点。所以我添加了另一个年份 2031 和另一个值,所有的权重(我通过从最后一个权重值中减去 1 得到新的权重值):

这是代码:

import matplotlib.pyplot as plt
import pandas as pd
from scipy.interpolate import interp1d
import numpy as np

# df['year'] = ['2005, 2005, 2005, 2015, 2015, 2015, 2030, 2030, 2030']
# df['name'] = ['A', 'B', 'C', 'A', 'B', 'C', 'A', 'B', 'C']
# df['weight'] = [80, 65, 88, 65, 60, 70, 60, 55, 65]

df1 = pd.DataFrame()
df1['Weight_A'] = [80, 65,  60 ,59]
df1['Weight_B'] = [65, 60,  55 ,54]
df1['Weight_C'] = [88, 70,  65 ,64]
df1.index = [2005,2015,2030,2031]


ax = df1.plot.line()
ax.set_title('Before interpolation')
ax.set_xlabel("year")
ax.set_ylabel("weight")

f1 = interp1d(df1.index, df1['Weight_A'],kind='cubic')
f2 = interp1d(df1.index, df1['Weight_B'],kind='cubic')
f3 = interp1d(df1.index, df1['Weight_C'],kind='cubic')

df2 = pd.DataFrame()
new_index = np.arange(2005,2031)
df2['Weight_A'] = f1(new_index)
df2['Weight_B'] = f2(new_index)
df2['Weight_C'] = f3(new_index)
df2.index = new_index

ax2 = df2.plot.line()
ax2.set_title('After interpolation')
ax2.set_xlabel("year")
ax2.set_ylabel("weight")


plt.show()

结果:

python - 如何在python中平滑图形中的线条?-LMLPHP
python - 如何在python中平滑图形中的线条?-LMLPHP

关于python - 如何在python中平滑图形中的线条?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40085300/

10-12 17:05