Rmarkdown:将plot放置在plot()代码下面

时间:2017-02-01 18:55:44

标签: r position knitr r-markdown figure

我正试图让我的情节立即出现在我的代码下面。我见过另外两个这样的问题。

Figure position in markdown when converting to PDF with knitr and pandoc

Position of plots using knitr

这些都有很多建议,其中一些很复杂,但都没有。 Yihui的建议答案:https://yihui.name/knitr/options/

  

fig.show:('asis'; character)如何展示/安排情节;四   可能的值是asis:在他们的位置准确显示图   生成(好像代码是在R终端中运行);

但这也行不通。这是我目前的尝试。如果你把它编成html,那么这些数字会显示在正确的位置,但会丢失字幕。我需要安装一些额外的东西吗?还是附加代码?

---
title: "Plotting Plots Under Code"
author: "Ilana"
date: "February 1, 2017"
output: pdf_document
fig.show: "asis"
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(ggplot2)
```

## Title

```{r fig.cap="Sample Plots"}

plot(iris$Sepal.Length,iris$Petal.Length,main="First One")
plot(iris$Sepal.Length,iris$Petal.Length,main="Second One")
#Where I want figure two
plot(iris$Sepal.Length,iris$Petal.Length,main="Third One")

```

More Text, Which should be on the bottom of the document

谢谢

0 个答案:

没有答案