我遇到问题是lines
在我在RStudio的.Rmd
中的现有情节上绘图。我在.Rmd
中的代码块中运行了代码(⌘+ return),plot
在.Rmd
(RStudio v1.0的新功能)中为我提供了一个图表,但是当我运行第二个代码lines
,出现错误。
plot(density(with$glucose),
ylim = c(0.00, 0.02),
xlab = "Glucose Level",
main = "Figure",
lwd = 2)
lines(density(without$glucose),
col = "red",
lwd = 2)
Error in plot.xy(xy.coords(x, y), type = type, ...) : plot.new has not been called yet
另一方面,如果我将代码复制并粘贴到控制台中,我可以在RStudio中的情节查看器中获得我想要的情节。
此外,当我在.Rmd
(⌘+ return)中运行其他代码时,我在RStudio中的情节查看器中的绘图消失了。这意味着我必须复制粘贴到控制台而不是使用(⌘+ return)快捷方式。
有没有人遇到同样的问题?