1. ホーム
  2. python

[解決済み] Python matplotlibのドット(散布)グラフにトレンドラインを追加する方法は?

2022-02-14 03:45:55

質問

matplotlib.scatterを使って描いたドットグラフに、トレンドラインを追加するにはどうしたらいいですか?

どのように解決するのですか?

説明したように こちら

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