Comment ajouter une ligne de tendance dans les graphiques Python matplotlib dot (scatter)?
Comment puis-je ajouter une ligne de tendance à un graphique à points dessiné en utilisant matplotlib.scatter?
25
demandé sur
user3476791
2014-10-19 08:07:20
1 réponses
Comme expliqué ici
Avec l'aide de numpy, on peut calculer par exemple 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])
39
répondu
martinenzinger
2016-05-09 18:10:12