-->

R Markdown: How do I show file contents

2020-08-18 06:22发布

问题:

I want to dump the contents of a text file inside my R markdown (rmd). I tried using the R command: system("cat a.csv"). This command show the file contents in R, but produces no output when I knit the file in R studio.

回答1:

You can use either

```{r engine='bash', comment=''}
cat a.csv
```

or

```{r comment=''}
cat(readLines('a.csv'), sep = '\n')
```

The former solution requires Bash. The latter one is pure R.



标签: r rstudio knitr