我的“绘图”选项卡不起作用-因此,我试图在“查看器”选项卡中显示ggplot
的输出。
已完成打印HTML表的操作:Force rstudio to use browser instead of viewer。可以在地块上这样做吗?
library(ggplot2)
gg.plot <- ggplot(mtcars, aes(mpg, wt)) + geom_point()
有没有一种打印到查看器的方法?
答案 0 :(得分:0)
我将此作为评论发布,但是无法正确设置格式,因此我将其作为答案。这段代码将创建一个新窗口以放置您的绘图。
library(ggplot2)
data(iris)
x11() # creates the new window
ggplot(data = iris, aes(Petal.Length)) + geom_histogram()
dev.off() # closes the window when you're done with it
答案 1 :(得分:0)