我使用expss
包来生成表,然后将它们传递给huxtable
这工作正常,但height
函数似乎不起作用。任何见解?无论使用主题或导出到HTML或Word,都会发生这种情况。
t<-mpg %>% tab_cells(hwy,displ) %>%
tab_rows(manufacturer) %>%
tab_stat_mean() %>%
tab_pivot() %>%
set_caption("Car Stats") %>%
as_huxtable() %>%
set_col_width(1,.1) %>%
theme_article()
height(t)<-0.1 # if I change this to 0.2 I get the same result...
t
1条答案
按热度按时间5jvtdoz21#
行高最小值为1.0。要将行放置得更靠近,请使用
padding
,如下所示: