如何在浏览器中显示matplotlib图表(html)?

时间:2014-10-19 19:07:59

标签: matplotlib

我需要在类似浏览器的Firefox中打开Matplotlib中的条形图 - 但我不应该在我的项目中使用Bokeh。有什么建议吗?

2 个答案:

答案 0 :(得分:2)

展示here

%matplotlib inline的IPython

答案 1 :(得分:0)

使用WebAgg后端,它打开一个带有绘图的浏览器窗口,并且像Qt或GTK窗口一样完全交互。

import matplotlib as mpl
mpl.use('WebAgg')
import matplotlib.pyplot as plt
# do your plotting
plt.show()

例如:

>>> import numpy as np
>>> a=np.random.random(100)
>>> b=np.random.random(100)
>>> plt.plot(a,b)

打开http://127.0.0.1:8988/显示: enter image description here