From: Esko Kokkonen Date: Thu, 5 Apr 2012 13:24:26 +0000 (+0300) Subject: Add title to the plot X-Git-Url: http://git.itanic.dy.fi/?p=emerge-timer;a=commitdiff_plain;h=8006888eb44f74b317ede02c761a6ecbd490d07d Add title to the plot --- diff --git a/emerge-timer.py b/emerge-timer.py index 27a5d9d..8c5c04a 100755 --- a/emerge-timer.py +++ b/emerge-timer.py @@ -212,6 +212,7 @@ class package: plt.plot_date(dates, times, xdate=True, ydate=False) plt.ylabel("Emerge time [s]") + plt.suptitle(self.name) fig.autofmt_xdate() plt.show()