I wrote an Rmd Markdown file main.Rmd which works on the basis of the data of a certain logfile (logfile1.Rda):
load("logfile1.Rda")
In this main.Rmd I refer to several child chunks:
{r child = 'child1.Rmd'}
and
{r child = 'child2.Rmd'}
and so on...
Now, I want to refer to a second logfile (logfile2.Rda):
load("logfile2.Rda")
and to reuse the child Rmd files again:
{r child = 'child1.Rmd'}
and
{r child = 'child2.Rmd'}
and so on...
But, as expected, there is the "duplicate chunk labels" warning.
Do you have an idea, how to reuse my child Rmd files which includes several chunks?