вязать.файл rmd.md и сохранить.md файл на один уровень выше с другим именем

у меня есть под названием mycode.rmd сохраняются в подкаталоге root/scripts on github.

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 в корневой папке всегда будет в курсе моего "реального" на root/scripts. Самое большее, что я хочу сделать, чтобы это произошло, это нажать "вязать в HTML" от RStudio при работе над mycode.rmd.

enter image description here

обновление:

решение, основанное на комментариях @Thomas:

Here is one option:

```{r, include=FALSE}
   # add this chunk to end of mycode.rmd
   file.rename(from="scripts/mycode.md", 
               to="README.md")
```

1 ответов


решение, основанное на комментариях @Thomas:

вот один из вариантов:

```{r, include=FALSE}
   # add this chunk to end of mycode.rmd
   file.rename(from="scripts/mycode.md", 
               to="README.md")
```