jupyter notebook在网页上显示作图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jupyter notebook在网页上显示作图相关的知识,希望对你有一定的参考价值。

    今天尝试使用jupyter notebook作图像展示工具时,发现用matplotlib所作的图像会自动启动一个图像展示窗口,无法显示在网页上,而我的初衷是使用jupyter notebook做图像即时呈现及存储(有点类似PPT作图)。

    随机生成一批正弦数据:

import numpy as np
import matplotlib.pyplot as plt

x=np.arange(10)
y=np.sin(x)
plt.plot(x,y)
plt.show()

    使用%matplotlib命令可以将matplotlib的图表直接嵌入到Notebook之中,或者使用指定的界面库显示图表,它通过参数指定matplotlib图表的显示方式。参数inline表示将图表嵌入到Notebook中。将该命令加入到上面的代码中,成功实现所需功能。

技术分享

本文出自 “abe” 博客,请务必保留此出处http://abezoo.blog.51cto.com/7223683/1956758

以上是关于jupyter notebook在网页上显示作图的主要内容,如果未能解决你的问题,请参考以下文章

jupyter notebook的使用

如何在 Jupyter Notebook 的同一行上显示两个 SVG 图像

如何在使用 django 构建的主页上显示 jupyter notebook?

Jupyter-NoteBook工具介绍(网页版编辑器)

Jupyter Notebook(iPython)

防止情节在 jupyter notebook 中显示