Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我打开了许多 R 会话。在 Rgui Options 中搜索,不确定如何命名每个打开和正在使用的会话。
在 R 的 GUI 首选项中搜索,无法获得任何帮助。检查如何使用命令执行此操作,它说每个会话都有自己的进程 ID,以找到使用的Sys.getpid()
Sys.getpid()
想要根据 R 会话窗口的名称选择 R 会话。
我的 Windows 版本以不同方式显示托盘图标,但我可以通过使用setWindowTitle. 例如,
setWindowTitle
setWindowTitle("Fred")
我得到这样的显示。
如果您需要自动执行此操作,您可以生成一个随机名称并将此语句粘贴到您的 .Rprofile
setWindowTitle(paste0(sample(LETTERS, 3, replace=TRUE), collapse=""))