RMarkdown-针织物-png大小不会改变

时间:2019-08-20 19:31:46

标签: r r-markdown knitr

我正在尝试使png图像更长,但是我更改的任何设置均无效。在this之后,下面显示了三种不同的尝试。这些选项会正确更改最后一块中的ggplot对象。我正在使用RMarkdown和knitr。

```{r setup, include=FALSE, echo=FALSE}
knitr::opts_chunk$set(fig.width=9, fig.height=6) 

library(RODBC)
library(data.table)
library(Matrix)
library(doParallel)
library(tidyverse)
library(gridExtra)

```

```{r , echo=FALSE, fig.height=50 }
knitr::include_graphics("data_sim_plot.png")
```

```{r , echo=FALSE, out.height=50, fig.height=50 }
knitr::include_graphics("data_sim_plot.png")
```

```{r , echo=FALSE, out.height=50, fig.height=50 }
knitr::opts_current$set(fig.height=20) 
knitr::include_graphics("data_sim_plot.png")
```


```{r, echo=FALSE}
# a different ggplot object
readRDS("gg.rds")
```

1 个答案:

答案 0 :(得分:0)

```{r , echo=FALSE, out.width= "500px"}
knitr::include_graphics("index.jpg")


```{r , echo=FALSE, out.width= "800px" }
knitr::include_graphics("index.jpg")

他们给了不同长度的照片。这就是你想要的吗?