我需要在类似浏览器的Firefox中打开Matplotlib中的条形图 - 但我不应该在我的项目中使用Bokeh。有什么建议吗?
答案 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/
显示: