问题
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.
来源:https://stackoverflow.com/questions/29257985/r-markdown-how-do-i-show-file-contents