I\'m trying to get a bigger chart. However, the figure method from matplotlib does not seem to be working properly.
I get a message, which is not an error:
You can skip the first plt.figure() and just use the argument figsize:
plt.figure()
df2.plot(figsize=(20,10))
See docs.