我刚刚开始使用该包在 R 中制作回归表,但无法弄清楚如何在没有浮动或文档环境的情况下stargazer
将表输出写入 .tex 文件(以及在文档环境的情况下的序言)。也就是说,我只想要表格环境。我的工作流程是将表格浮动环境 - 以及相关的标题和标签 - 保留在论文正文中,并使用.\input{}
这可能吗?
# bogus data
my.data <- data.frame(y = rnorm(10), x = rnorm(10))
my.lm <- lm(y ~ x, data=my.data)
# if I write to file, then I can omit the floating environment,
# but not the document environment
# (i.e., file contains `\documentclass{article}` etc.)
stargazer(my.lm, float=FALSE, out="option_one.tex")
# if I write to a text connection with `sink`,
# then I can omit both floating and document environments,
# but not commands
# (i.e., log contains `sink` and `stargazer` commands)
con <- file("option_two.tex")
sink(con)
stargazer(my.lm, float=FALSE)
sink()