I have this Pandas DataFrame
which gives me this:
import matplotlib.pyplot as plt # 1, 4 f = plt.figure(figsize=(10, 10)) # Change the size as necessary # 2 dataframe.plot(ax=f.gca()) # figure.gca means "get current axis" plt.title('Title here!', color='black') # 3 # Not sure :(