in Ipython notebook / Jupyter, Pandas is not displaying the graph I try to plot

后端 未结 7 2198
梦谈多话
梦谈多话 2020-12-22 18:27

I am trying to plot some data using pandas in Ipython Notebook, and while it gives me the object, it doesn\'t actually plot the graph itself. So it looks like this:

7条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-22 19:13

    All you need to do is to import matplotlib.

    import matplotlib.pyplot as plt 
    

提交回复
热议问题