我想调整jtools
回归表中的行填充。我试过set_row_height
了,因为我读到底层结构是huxtable
. 但我不确定,它没有用。
---
title: "Untitled"
author: "Name"
date: "10 5 2021"
output: html_document
---
## R Markdown
```{r, warning=FALSE, message=FALSE}
mymodel <- lm(mpg ~ ., data=mtcars)
library(tidyverse)
library(jtools)
library(huxtable)
export_summs(mymodel, scale = TRUE) %>%
set_font_size(6) %>% # working in markdown html
set_row_height(., everywhere, 0.1) # not working in html
```
它在 RStudio 中看起来不错,但在 Markdown 中使用了大量的行空间。set_font_size
正在工作,但set_row_height
没有。