用 R Markdown 编织的 ggplot barplot

ggplot barplot knitted with R Markdown

问题:该图的 y 轴标签彼此太靠近。

问:如何增加标签之间的间距?

在您的 rmd 块中设置 fig.height。
样本

```{r, warning=FALSE,message=FALSE, fig.height=12, fig.width=12}
# Your ggplot code goes over here

```