0
I’m working on a report in Rmarkdown and I need to do another report which is actually a summary of the first.
As it is a synthesis of the first, I need to rescue some objects from the original report.
Export objects as csv or image I think is counterproductive.
It is possible to do this without having to rewrite the codes in the summary file?
Utilise
save.image(file = "resultadosMarkdownOriginal.RData")
in the first file andload(file = "resultadosMarkdownOriginal.RData")
in the second is an option? Another way would be to usecache = TRUE
andcache.path = "folderDaCache"
in the important Chunks of the first file and then load only those that are important.– Marcus Nunes