plot.new()中的错误:gwidgets2中的数字边距太大

时间:2016-09-12 14:29:24

标签: r plot gwidgets

我正在尝试绘制一个图表,但只是在我第一次尝试绘制它时出现这个错误,这很奇怪。

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. 

2 个答案:

答案 0 :(得分:0)

你试图扩大绘图窗口吗?

答案 1 :(得分:0)

问题是在剧情试图绘制之前图形小部件尚未实现。最简单的方法是在使用Sys.sleep进行绘图之前暂停一小段时间。 Fancier使用的,是在一个实现处理程序中渲染绘图。