Skip to content

Commit

Permalink
Increase size of graph title
Browse files Browse the repository at this point in the history
...from medium to large.
  • Loading branch information
iaindillingham committed Dec 13, 2023
1 parent 367006e commit d90d9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analysis/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def plot(by_day, by_week):
ax.grid(True)
ax.margins(x=0)
min_ts, max_ts = [num2date(x) for x in ax.get_xlim()]
ax.set_title(f"From {min_ts:%Y-%m-%d} to {max_ts:%Y-%m-%d}", fontsize="medium")
ax.set_title(f"From {min_ts:%Y-%m-%d} to {max_ts:%Y-%m-%d}", fontsize="large")
ax.set_ylabel("Event Counts")
ax.set_ylim(0)
ax.legend(loc="upper right")
Expand Down

0 comments on commit d90d9c9

Please sign in to comment.