Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 pandas 和 ipython notebook 内联。我用熊猫数据框画了一个图
figure() subplot = df['likes'].hist() subplot.set_title("Likes") display(fig) draw()
例如,我正在尝试向直方图添加标题,我想重绘它,但 ipython notebook 不会重绘。
有人有建议吗?在 ipython 中,当我使用 draw() 时,它会重绘并添加标题。我想格式化我的熊猫图。
在我执行单元格的代码后,ipython notebook 似乎关闭了该图。要格式化轴,我必须在单个单元格中执行所有代码。