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.
认为这会做到这一点 - 但仍然去控制台。
expss_output_viewer() data(mtcars) info(mtcars, max_levels = 5) expss_output_default()
但似乎只有表输出被expss_output_viewer() 包手册 [第 58 页] 重定向,建议将文件信息加载到 RStudio 查看器中。
expss_output_viewer()
这是怎么做到的?
在这一点上,手册中存在不准确之处。查看器的意思是“数据查看器” - 当您在对象浏览器中单击数据或调用View函数时出现的选项卡:
View
data(mtcars) View(info(mtcars, max_levels = 5))
或者,您可以使用以下命令将其视为 HTML as.etable:
as.etable
expss_output_viewer() data(mtcars) as.etable(info(mtcars, max_levels = 5)) expss_output_default()