上图为图

时间:2017-08-19 06:07:01

标签: r r-markdown

```{r fig1, fig.cap="This is a caption", fig.width=7, fig.height=5}  
x = 1:50
y = x^2
plot(x, y)

```

当我在R Markdown文件中运行此代码时,图形标题位于图的底部。

如何使标题显示在图上方?

1 个答案:

答案 0 :(得分:0)

你可以试试这个:

```{r fig1, fig.width=7, fig.height=5,}  
x = 1:50
y = x^2
plot(x, y,main = "This is a caption")
```