我正在关注 Wes McKinney 的一本书,在介绍 pandas 的部分中,他给出了一个绘制 pandas Data Frame 的简单示例。这是我写的行:
tz_counts = frame['tz'].value_counts() # frame is a Data Frame
tz_counts[:10] # works fine till here. I can see the key-value I wanted
tz_counts[:10].plot(kind='barh', rot=0)
它只是在屏幕上打印一行,上面写着
<matplotlib.axes.AxesSubplot object at 0x3d14ed0>
而不是像我期望的那样使用 matplotlib 的绘图功能显示绘图窗口。这里有什么问题?我怎样才能让它工作?