gpt4 book ai didi

r - 使用 knitr 在 rmarkdown 中并排显示两个图像?

转载 作者:行者123 更新时间:2023-12-02 16:28:52 26 4
gpt4 key购买 nike

在 Rmarkdown 中,我想并排打印来自网络的两张图片。我正在尝试这个

```{r, echo=FALSE, out.width="33%", fig.align = "center", fig.cap="Examples of the FPTP bias: In Prairies (left) and Greater Toronto area (right). Source: www.fairvote.ca"}

knitr::include_graphics(
c("https://www.fairvote.ca/wp-content/uploads/2019/12/Western-alienation-website-FPTP-page.png", "https://www.fairvote.ca/wp-content/uploads/2019/12/Toronto-Peel-halton-2019-results-website-FPTP.jpg")
)

```

但我得到的是这个——它们仍然是一个叠印的:

enter image description here

请指教。注意:我不知道要使用什么 cowplot 或任何其他包。

最佳答案

包含参数 fig.show='hold'

```{r, echo=FALSE, out.width="33%", fig.align = "center", fig.show='hold', fig.cap="Examples of the FPTP bias: In Prairies (left) and Greater Toronto area (right). Source: www.fairvote.ca"}
knitr::include_graphics(
c("https://www.fairvote.ca/wp-content/uploads/2019/12/Western-alienation-website-FPTP-page.png",
"https://www.fairvote.ca/wp-content/uploads/2019/12/Toronto-Peel-halton-2019-results-website-FPTP.jpg")
)
```

这是现在的样子: Here is what it looks like now.

关于r - 使用 knitr 在 rmarkdown 中并排显示两个图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63866273/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com