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在 windows 中查看帮助文档,就像使用 Linux 时一样。也就是说,帮助文档显示在运行R程序的同一个终端;在其中我只需键入?help命令。
R
?help
options(help_type="text")将在 R 中弹出一个文本窗口,而不是在浏览器中显示帮助。但是,您实际上不能在 R 控制台中显示帮助。(奇怪的是,即使使用 R 的控制台版本也不行。)
options(help_type="text")
一种选择是使用 Windows 上可用的众多 R GUI 环境之一——这些环境通常在同一个“窗口”中提供文档(不在 R 终端本身中)。如果这对您来说足够接近,请尝试RStudio或RKWard。