jupyter中的r图-无法启动png()设备

时间:2018-06-20 09:33:34

标签: r png jupyter-notebook jupyter-irkernel

我在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)

我已经关注了,但是没有一个能解决我的问题。

  1. Displaying ggplot2 graphs from R in Jupyter
  2. unable to plot in jupyter notebook using R kernel
  3. libXrender.so.1 is required to display R plots inline
  4. Can't display png
  5. Rendering of graphs in R kernel Notebooks on GitHub(与Github相关)

2 个答案:

答案 0 :(得分:1)

我有完全一样的问题。我关闭了Anaconda,再次将其打开,然后更新了内核。最终,它再次正常运行,没有任何错误。

conda install -c r r-essentials

答案 1 :(得分:0)

重新启动内核对我来说很好。