如何在rmarkdown中调整注视表的字体大小?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在rmarkdown中调整注视表的字体大小?相关的知识,希望对你有一定的参考价值。
如果我没记错的话,在rmarkdown文档中忽略了stargazer中的font size参数:
有人知道如何解决此问题吗?也请看这里How to resize tables generated by Stargazer in R Markdown?
---
title: "Untitled"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library("stargazer")
m <- lm(speed~dist, cars)
```
```{r, results='asis'}
stargazer(m, type = "html", font.size="tiny", single.row = T)
stargazer(m, type = "html", font.size="Huge", single.row = T)
```
```{r, results='asis'}
print(stargazer(m, type = "html", single.row = T), scalebox='0.7')
```
答案
只需将其添加到YAML的末尾,即可根据需要调整字体大小:
---
title: "Untitled"
output: html_document
---
<style>
body { font-size: 20px; }
</style>
较大的字体将呈现:
以上是关于如何在rmarkdown中调整注视表的字体大小?的主要内容,如果未能解决你的问题,请参考以下文章
在Rmarkdown文档中调整嵌入式Shiny App的大小