Any idea why my script below places the title so far from the graphs/subplots? Is it possible to specify the font size of the title?
df = pandas.read_csv('data.csv', delimiter=',',
index_col=0,
parse_dates=[0], dayfirst=True,
names=['Date','1','2','3','4', '5'])
df.plot(subplots=True, marker='.',markersize=8, title ="Graph", fontsize = 10, color=['r','b','b','b', 'b'], figsize=(8, 18))
plt.savefig('capture.png')
Thanks a ton!