Hi All,
I like working in .Rmd files to have better understanding of data.
However, when it comes to creating a pipeline, I am not able to figure out as to how .Rmd files can be picked up from source like we can do for .R files.
# For Example, with all ".R" files,
# I can just have a "pipeline.R" file which contains the following
source("Src/File1.R")
source("Src/File2.R")
When I run "pipeline.R" file, both the files within it are run in sequential order.
However, I am not able to do the same thing with .Rmd files. How can I create a pipeline to run all .Rmd files in sequential order?
Thanks!