我在我的 Rmarkdown 文件中制作了以下图,并使用 Xaringan 渲染它。
---
title: "myTitle"
output:
xaringan::moon_reader:
css: ["default", "kunoichi", "ninjutsu", "metropolis-fonts"]
lib_dir: libs
chakra: libs/remark-latest.min.js
seal: false
nature:
countIncrementalSlides: false
ratio: '16:9'
---
# Two pretty gaussians
## and a few vertical lines
```{r, echo=FALSE, message=FALSE, warning=FALSE}
library(cowplot)
ggplot(data = data.frame(x = c(-3, 3)), aes(x)) +
stat_function(fun = dnorm, n = 101, args = list(mean = 1, sd = 1)) +
stat_function(fun = dnorm, n = 101, args = list(mean = -1, sd = 1)) +
geom_vline(xintercept = 0, colour="black", linetype = "solid") +
geom_vline(xintercept = c(-1.5,1.5), colour="black", linetype = "longdash") +
ylab("Density") + xlab("\'Internal Signal\'") +
scale_y_continuous(breaks = NULL)
```
这导致以下演示文稿。我只想使绘图更小,而无需将其保存为图像的间接步骤,然后调用它并对其进行缩放。