web-dev-qa-db-fra.com

Comment ajouter une courbe de tendance dans les graphes python matplotlib)?

Comment puis-je ajouter une courbe de tendance à un graphique à points dessiné à l'aide de matplotlib.scatter?

43
user3476791

comme expliqué ici

Avec l'aide de numpy, on peut par exemple calculer un ajustement linéaire.

# 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