启动时将 par 重置为默认值
通常,当我创建自己的绘图函数时,我会创建一个构造:
op <- par("mypar"=myvalue)
on.exit(par(op))
这是将 par
恢复为先前值的标准方法。想象一下,您一直在运行一些确实更改了某些参数的函数,并且您需要在 R 中启动时重置为默认值。这样做的便捷方法是什么?
或者换句话说:如何达到 par()
的默认值?
Normally when I make my own plot functions, I make a construct :
op <- par("mypar"=myvalue)
on.exit(par(op))
which is the standard way of reverting the par
to the previous values. Imagine you've been running some functions that did change some of the pars, and you need to reset to the default values at startup in R. What is the convenient way of doing so?
Or in other words : how does one reaches the default values for par()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
每次打开新设备时,par() 都会重置,因此另一个选择是简单地执行 dev.off() 并继续。
Every time a new device is opened par() will reset, so another option is simply do
dev.off()
and continue.这很hacky,但是:
以某种方式工作,但它确实会暂时在屏幕上闪烁一个新设备...
例如:
This is hacky, but:
works after a fashion, but it does flash a new device on screen temporarily...
E.g.:
来自 Quick-R
From Quick-R
用于防止函数更改用户
par
的替代解决方案。您可以在函数早期设置默认参数,这样图形参数和布局在函数执行过程中不会改变。请参阅?on.exit
了解更多详细信息。An alternative solution for preventing functions to change the user
par
. You can set the default parameters early on the function, so that the graphical parameters and layout will not be changed during the function execution. See?on.exit
for further details.dev.off() 是最好的函数,但它也会清除所有绘图。如果您想在窗口中保留绘图,请在开始时保存默认参数设置:
然后,当您使用 par 函数时,您仍然拥有默认 par 设置的备份。稍后,生成绘图后,完成:
这样,您可以保留生成的图并重置 par 设置。
dev.off() is the best function, but it clears also all plots. If you want to keep plots in your window, at the beginning save default par settings:
Then when you use your par functions you still have a backup of default par settings. Later on, after generating plots, finish with:
With this, you keep generated plots and reset par settings.
使用下面的脚本返回正常的 1 绘图:
Use below script to get back to normal 1 plot: