散点图的中间线

时间:2015-09-28 15:57:01

标签: python matplotlib scipy

我用以下数据实现了散点图:

  

x = [1000,10000,2000,....]   y = [10,20,12,90,....]

结果是跟随enter image description here

现在我正在寻找所有y点的中值插值,例如" smooth" gnuplot中的命令。你知道matplotlib中是否有类似的东西? 非常感谢

1 个答案:

答案 0 :(得分:0)

似乎没有办法只使用matplotlib轻松完成此操作。

您可以使用scipy's 1D interpolation,它提供了一些类似于gnuplot smooth的例程。然后,您可以使用matplotlib绘制插值线。