我使用knitr整理了一个文档,虽然大部分文档看起来很好,但有一个回归表太宽而无法在页面上进行更改。
使用stargazer生成回归表,并且非常宽。
我试图按如下方式调整整个块的大小:
cmov
但是在生成调整大小的输出方面没有运气。有什么东西我做错了,是不是可以通过块选项调整这些观星桌的大小?
谢谢!
答案 0 :(得分:0)
您可以使用.css文件调整输出大小。
在YAML中添加:
---
output:
html_document:
css: custom.css
---
并在custom.css文件中,您可以输入:
table {
width: 100%;
}
通常更容易将custom.css放在同一个文件夹中,并注意您的最终输出仍然是自包含的。
答案 1 :(得分:0)
您可以操纵观星者的选项来调整您的观星者桌子的大小。对于R降价的PDF输出,请尝试以下操作:
stargazer(model_1, model_2, model_3, model_4, model_5,
type = 'latex',
header=FALSE, # to get rid of r package output text
single.row = TRUE, # to put coefficients and standard errors on same line
no.space = TRUE, # to remove the spaces after each line of coefficients
column.sep.width = "3pt", # to reduce column width
font.size = "small" # to make font size smaller
)