Explorar el Código

visual tweaks

George C. Privon hace 11 años
padre
commit
8b23449dec
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      email_stats.py

+ 2 - 2
email_stats.py

@@ -87,13 +87,13 @@ for plid in enumerate(pldata.keys()):
     plt.plot_date(np.array(pldata[plid[1]])[:,0],
                   np.array(pldata[plid[1]])[:,1],
                   color=scolor(plid[0] / (nsend + 1)),
-                  ls='.',
+                  marker='.',
                   #tz=z.tzname(),
                   label=plid[1],
                   xdate=True)
 
 if args.sendercolors:
-    plt.legend(title='Sender', loc='upper left', ncol=nsend + 1)
+    plt.legend(loc='upper left', ncol=nsend + 1)
 
 if args.plotfile:
     plt.savefig(args.plotfile)