Jupyterlab在线互动情节

时间:2019-06-18 05:30:05

标签: python matplotlib ipython jupyter jupyter-lab

我正在尝试使我在jupyterlab中的嵌入式绘图互动。到目前为止,除其他外,我已经尝试了一个建议:

jupyterlab interactive plot

# %matplotlib notebook - does not work : Javascript Error: IPython is not defined
# %matplotlib widget - works, but plots are overwritten

小部件魔术可以使地块互动,但是不幸的是,我的地块被覆盖了。后续单元格在单元格1的输出顶部绘制图,如下所示:

plt.scatter(trainData['x'], trainData['y'], color='Red', s=0.5)
plt.show()

enter image description here

plt.hist(trainData['x'])
plt.xlabel("Values of X")
plt.ylabel("Frequency")
plt.show()

enter image description here

plt.hist(trainData['y'])
plt.xlabel("Values of Y")
plt.ylabel("Frequency")

enter image description here

这看起来不正确,我错过了一个选择吗?我正在寻找一种IPython魔术,可以帮助您进行多个内联绘图(每个单元格之后)?

我正在从Windows 10上的Anaconda导航器运行的Chrome版本74.0.3729.169上使用jupyterlab v 0.35.4。

0 个答案:

没有答案