web-dev-qa-db-ja.com

python matplotlibドット(散布)グラフに近似曲線を追加する方法は?

Matplotlib.scatterを使用して描画されたドットグラフにトレンドラインを追加するにはどうすればよいですか?

43
user3476791

説明通り こちら

Numpyの助けを借りて、たとえば線形近似を計算できます。

# plot the data itself
pylab.plot(x,y,'o')

# calc the trendline
z = numpy.polyfit(x, y, 1)
p = numpy.poly1d(z)
pylab.plot(x,p(x),"r--")
# the line equation:
print "y=%.6fx+(%.6f)"%(z[0],z[1])
56
martinenzinger