-1

我正在使用 sjPlot 以获得“漂亮”的表格。我设法创建了一个非常好的意外事件和另一个表格,为我提供了一个变量的频率。

一切都很好,应该是这样 - 除了一件事:我使用 RStudio,当我运行包含多个 sjPlot 表作为输出的代码时,我只能访问最新的一个。与 RStudio 的图形窗口不同,您可以在输出中来回单击,我只停留在最后一张表。

有没有办法创建一个新的选项卡或窗口左右,我可以运行我的代码并访问我创建的所有表?

那将是超级酷!

4

2 回答 2

0

谢谢丹尼尔!这实际上真的很有帮助!

我还想通了(这就是为什么我将其发布为答案而不仅仅是评论......)这windows()也通过 RStudio 创建了新的数据窗口。这可能对其他 RStudio 用户也很有趣 :-)

这是一些从我的脚本中快速复制的示例代码:

scatter <- ggplot(na.action=na.exclude, spending.analysis, aes(age, money))
windows()
scatter + 
        geom_point(aes(color = school), alpha = 0.7) +
        geom_smooth( method = "lm", color = "dark blue", alpha = 0.05, fill = "blue", na.action = na.exclude) +
        facet_grid(. ~ school) +
        theme_bw() +
        scale_color_manual(values = group.colors)

我认为这解释了在哪里放置windows()命令

于 2015-02-27T19:05:10.640 回答
0

目前,RStudio 中的查看器窗格没有历史记录功能。您可以改为在浏览器中打开表格(或另外,查看器窗格中有一个图标),因此您有多个浏览器选项卡,每个选项卡都有一个表格输出。

或者,您“连接”多个表并在查看器窗格中显示它们,但是,这是一项相当大的工作量。

# create and save first HTML-table
part1 <- sjt.lm(fit1, fit2)
# create and save second HTML-table
part2 <- sjt.lm(fit3, fit4)
# browse temporary file
htmlFile <- tempfile(fileext=".html")
write(sprintf("<html><head>%s</head><body>%s<p></p>%s</body></html>",
              part1$page.style,
              part1$page.content,
              part2$page.content),
      file = htmlFile)
viewer <- getOption("viewer")
if (!is.null(viewer)) viewer(htmlFile) else     
utils::browseURL(htmlFile)
于 2015-02-25T22:25:36.633 回答