jupyter 中的 r 图 - 无法启动 png() 设备
r graphs in jupyter - unable to start png() device
我在 Jupyter 中使用 R,但无法在笔记本本身中绘制图表。
这是一个可重现的例子
set.seed(123)
mat = as.matrix(x = rnorm(100), y = rnorm(100))
plot(mat)
在 Jupyter 中:
Error in png(tf, width, height, "in", pointsize, bg, res, antialias = antialias): unable to start png() device
Traceback:
如果我使用下面的方法,我可以在当前工作目录中以png格式保存图像。
png('test.png')
plot(mat)
dev.off()
编辑:
SessionInfo()
R version 3.4.4 (2018-03-15)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 16299)
我已完成以下操作,但其中 none 解决了我的问题。
- Displaying ggplot2 graphs from R in Jupyter
- unable to plot in jupyter notebook using R kernel
- libXrender.so.1 is required to display R plots inline
- Can't display png
- Rendering of graphs in R kernel Notebooks on GitHub(与Github相关)
我遇到了完全相同的问题。我关闭了 Anaconda,再次打开它,然后更新了内核;最后,它再次运行,没有任何错误。
conda install -c r r-essentials
重新启动内核对我来说效果很好。
我在 Jupyter 中使用 R,但无法在笔记本本身中绘制图表。
这是一个可重现的例子
set.seed(123)
mat = as.matrix(x = rnorm(100), y = rnorm(100))
plot(mat)
在 Jupyter 中:
Error in png(tf, width, height, "in", pointsize, bg, res, antialias = antialias): unable to start png() device
Traceback:
如果我使用下面的方法,我可以在当前工作目录中以png格式保存图像。
png('test.png')
plot(mat)
dev.off()
编辑:
SessionInfo()
R version 3.4.4 (2018-03-15)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 16299)
我已完成以下操作,但其中 none 解决了我的问题。
- Displaying ggplot2 graphs from R in Jupyter
- unable to plot in jupyter notebook using R kernel
- libXrender.so.1 is required to display R plots inline
- Can't display png
- Rendering of graphs in R kernel Notebooks on GitHub(与Github相关)
我遇到了完全相同的问题。我关闭了 Anaconda,再次打开它,然后更新了内核;最后,它再次运行,没有任何错误。
conda install -c r r-essentials
重新启动内核对我来说效果很好。