我正在尝试使用ggplot创建一个简单的图。通过我的R版本3.5.1 Pixelbook附带的内置Linux beta终端,使用conda安装了R。代码在Mac和Ubuntu上运行良好,在Pixelbook上,所有库均加载良好。从同一虚拟环境启动的Terminal R和Jupyter笔记本可以使用rkernel成功渲染图形。
代码
ggplot(df, aes(idiom_lang, exp_resp.rt, color = phrase_condition))+
geom_boxplot()+
ylab('Reaction time')+
facet_wrap(~nat_LAN)
错误
Error in dev.control(displaylist = "enable") : dev.control() called without an open graphics device
请帮助!