我只是想在基础R中堆叠两个简单的线条图。这是我尝试过的:
x <- c(1:100)
y <- c(100:1)
old.par <- par(mfrow = c(2, 1))
plot(x, y)
plot(x, y)
par(old.par)
我过去成功使用过这种方法,但是这次在我调用plot(x, y)
时R给我一个错误:
Error in plot.new() : figure margins too large
。如果我事先没有plot(x,y)
致电par(...)
,则没有错误。
答案 0 :(得分:0)
这对我有用plot
如果你在RStudio中收到此消息,点击Plots选项卡中的'broomstick'图“Clear All Plots”并再次尝试plot()可能会有效。