我正在尝试在 Jupyter 实验室中使用 R 内核进行绘图,并将我的 Jupyter 实验室主题设置为“Jupyterlab dark”。
下面是我的代码:
options(repr.plot.width=20, repr.plot.height=5)
plot(x)
points(x2,pch=1,col="blue")
这就是我得到的
有没有办法让它看起来更像下面的情节?(我将 jupyter lab 主题切换为 light,现在可以看到情节了)
我正在尝试在 Jupyter 实验室中使用 R 内核进行绘图,并将我的 Jupyter 实验室主题设置为“Jupyterlab dark”。
下面是我的代码:
options(repr.plot.width=20, repr.plot.height=5)
plot(x)
points(x2,pch=1,col="blue")
这就是我得到的
有没有办法让它看起来更像下面的情节?(我将 jupyter lab 主题切换为 light,现在可以看到情节了)