如何使用fig_height& amp;来指定图形尺寸R Notebook中的fig_width

时间:2018-01-19 15:15:09

标签: rstudio r-markdown rnotebook

使用R Notebook时遇到有关图形尺寸的问题。

fig_height&当我设置fig_height时,fig_width在html_notebook中不起作用:2& fig_width:2如下所示。

---
title: "R Notebook"
output:
  html_notebook:
   fig_height: 2 
   fig_width: 2
---

# test

## test2
```{r}
plot(cars)
```

The R Notebook

但如果我将html_notebook更改为html_document,则fig_height& fig_width将成为我需要的。

---
title: "R Notebook"
output:
  html_document:
    fig_height: 2 
    fig_width: 2
---

# test

## test2
```{r}
plot(cars)
```

The R Markdown

这是否意味着R Notebook无法使用fig_height:& fig_width:一开始?或者我做错了什么?

我使用Rstudio 1.1.383,R版本3.4.2。和mac OS HIGH Sierra。

感谢您的关注。

0 个答案:

没有答案