Making a chart bigger in size

后端 未结 1 607
萌比男神i
萌比男神i 2020-12-30 19:40

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:

相关标签:
1条回答
  • 2020-12-30 20:00

    You can skip the first plt.figure() and just use the argument figsize:

    df2.plot(figsize=(20,10))
    

    See docs.

    0 讨论(0)
提交回复
热议问题