我在 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)
我已经完成了以下操作,但没有一个能解决我的问题。