我有一个R Markdown文档,其中一个R块包含2行代码。在生成的HTML文档中,我希望属于同一块(本例中为两个)的所有代码行在输出之前打印在一个框中。
---
title: "Just a test"
author: "Yours Truly"
date: '`r Sys.Date()`'
output:
html_document:
fig_caption: yes
---
```{r setup, include=FALSE}
library(ggplot2)
library(car)
library(knitr)
opts_chunk$set(cache = TRUE,
out.width = "75%",
fig.align = "center")
```
here is some code
```{r EDA}
summary(Davis)
ggplot(Davis, aes(x = height, y = weight)) +
geom_point()
```
相反,我得到的是块的每行代码后面紧跟其输出:
我希望包含summary(Davis)
和ggplot(Davis, aes(x = height, y = weight)) + geom_point()
的两个灰色框在一个灰色框中连接在一起,然后输出。这可能吗?