Два графика

import matplotlib.pyplot as plt

fig, (ax1, ax2) = plt.subplots(1, 2)
ax1.plot(data['col1'])
ax1.set_title('New Title')
ax2.plot(data['col2'])
plt.subplots(1,2, figsize=(10,5))
fig.suptitle('Общий заголовок')
plt.show()
https://pandas.pydata.org/pandas-docs/version/0.13.1/visualization.html#...
https://matplotlib.org/3.1.0/api/_as_gen/matplotlib.pyplot.subplots.html