标签: r plot graphics par
我要取消警告:calling par(new=TRUE) with no plot
calling par(new=TRUE) with no plot
在我的开发包中,我打算让用户在以前绘制的曲线上绘制曲线以进行比较。为此,我在程序包中为每个graphics::par(new=T)输入了代码plot()。但是,会出现以下警告:
graphics::par(new=T)
plot()
Warning messages: In graphics::par(new = TRUE) : calling par(new=TRUE) with no plot
如何删除此警告?