Need the filename of the Rnw when knitr runs in rStudio

前端 未结 2 1147
轮回少年
轮回少年 2021-01-18 12:11

When working on a reproducible research project, I would like to know the name of the Rnw file that is being run to use as an R variable.

This would be analogous to

相关标签:
2条回答
  • 2021-01-18 12:49

    You can use the following two idioms to fetch the directory and name of the current file in knitr:

    knitr:::.knitEnv$input.dir
    knitr:::knit_concord$get("infile")
    

    This is independent of RStudio, the knitr package is entirely responsible for this. These are private functions and variables that can change at any time without notice, so if you need something reliable, you might want to file an issue on GitHub.

    0 讨论(0)
  • 2021-01-18 12:59

    knitr now has a method for this: current_input()

    https://github.com/yihui/knitr/issues/701

    0 讨论(0)
提交回复
热议问题