我有一个名为.rmd
的{{1}}文件保存在github上名为mycode.rmd
的子目录中。
root/scripts
根文件{000}中的R Markdown
========================================================
I'd like to find a way to 'knit to HTML' in RStudio and have the resulting .md
file save one level up in the root directory with a different name, README.md,
so Github will display it.
```{r, results='hide'}
math <- 1 + 1
```
始终与README.md
中的“真实”.rmd
文件保持同步。我想做的最多的事情就是在处理root/scripts
时从RStudio按'编织HTML'。
更新:
基于@Thomas评论的解决方案:
mycode.rmd
答案 0 :(得分:4)
基于@Thomas评论的解决方案:
这是一个选项:
```{r, include=FALSE}
# add this chunk to end of mycode.rmd
file.rename(from="scripts/mycode.md",
to="README.md")
```