real - ¿Cómo agregar una línea de tendencia en los gráficos de puntos(dispersión) de python matplotlib?
graficas en python matplotlib (1)
¿Cómo podría agregar una línea de tendencia a un gráfico de puntos dibujado con matplotlib.scatter?
como se explica here
Con la ayuda de Numpy se puede calcular, por ejemplo, un ajuste lineal.
# 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])