标签: python pandas matplotlib
我有int类型的熊猫系列。我正在尝试获得平滑的曲线,而不是曲折的结构。
int
我以前看到过关于同一问题的文章,但是他们正在用(x vs y)曲线平滑曲线,而在我的情况下,我只有一个熊猫系列,即X轴。
我需要弯曲的曲线图。
这是the post which I am referring to。
答案 0 :(得分:0)
y轴上有exp。您可以简单地为x轴生成另一个序列1,2,...。
exp
l=[i fo i in range(exp.shape[0])] series_for_x_axis=pd.Series(l)
在x和y轴上都有值。