3

I am using pandas and ipython notebook inline. I drew a figure with pandas dataframe

figure()
subplot = df['likes'].hist()
subplot.set_title("Likes")
display(fig)
draw()

I am trying to add a title to the histogram for example and I'd like to redraw it, but ipython notebook does not redraw.

Does anyone have a suggestion? In ipython when I use draw() it redraws and adds a title. I want to format my pandas plots.

4

1 に答える 1

3

セルのコードを実行した後、ipythonノートブックが図を閉じているようです。軸をフォーマットするには、単一のセルですべてのコードを実行する必要があります。

于 2012-06-22T13:55:47.227 に答える