Plot在Jupyter中不会出现

时间:2016-03-10 12:48:44

标签: python pandas jupyter-notebook

我是python的新手,我开始自学如何使用此链接中的练习在jupyter上使用pandas:

http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/v0.1/cookbook/Chapter%201%20-%20Reading%20from%20a%20CSV.ipynb

我遇到的问题是,当我在Jupyter中执行时,1.3的情节不会出现,我只得到以下输出:

matplotlib.axes._subplots.AxesSubplot at 0x8ad24a8>"

然而,当我在Spyder中运行相同的代码时,它确实出现了。有人知道为什么吗?这是我的代码:

 import pandas as pd
import os
fixed_df = pd.read_csv('bikes.csv', sep=';', encoding='latin1', parse_dates=['Date'], dayfirst=True, index_col='Date')
fixed_df['Berri1'].plot()

1 个答案:

答案 0 :(得分:26)

在你的情节之前添加以下代码:

%matplotlib inline