R Commander 日志窗口高度

发布于 2024-12-18 04:58:29 字数 62 浏览 3 评论 0原文

在哪里以及如何永久更改 R Commander 中的选项设置? 具体来说,我想更改日志窗口高度和输出窗口高度?

Where and how do I permanently change my option settings in R commander?
Specifically, I want to change the log window height and the output window height?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

睡美人的小仙女 2024-12-25 04:58:29

多个功能由运行时选项控制,通过 options("Rcmdr") 命令设置。这些选项应在加载包之前设置(例如在适当的.RprofileRprofile.site 文件中)。请参阅?指挥官

要更改日志窗口高度和输出窗口高度,您可以使用以下命令:

options(Rcmdr=list(output.height=10, log.height=5))

更新:这对我有用

# .Rprofile
.First <- function() {
  options(Rcmdr=list(output.height=10, log.height=5))
  library("Rcmdr")
}

Several features are controlled by run-time options, set via the options("Rcmdr") command. These options should be set before the package is loaded (e.g. in appropriate .Rprofile or Rprofile.site files). See ?Commander.

To change the log window height and the output window height you can use the following:

options(Rcmdr=list(output.height=10, log.height=5))

Update: this works for me

# .Rprofile
.First <- function() {
  options(Rcmdr=list(output.height=10, log.height=5))
  library("Rcmdr")
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文