我正在尝试绘制一个图表,但只是在我第一次尝试绘制它时出现这个错误,这很奇怪。
w <- gwindow(title="Plots")
g=ggraphics(cont=w,visible=FALSE)
plot(x,y,xlab = "Period",ylab = "Scores",main = "Results",type = "l")
visible(w) <- TRUE
Now I get the subject line error. If I again run the plot(), I see the plot in the window. How can I avoid this. Thanks.
答案 0 :(得分:0)
答案 1 :(得分:0)
问题是在剧情试图绘制之前图形小部件尚未实现。最简单的方法是在使用Sys.sleep
进行绘图之前暂停一小段时间。 Fancier使用的,是在一个实现处理程序中渲染绘图。