[This article was first published on OUseful.Info, the blog... » Rstats, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
As part of the Wrangling F1 Data With R project, I want to be able to generate sentences iteratively from a templated base.
The following recipe works for sentences included in an external file:
What I’d really like to be able to do is put the Rmd template into a chunk something like this…:
```{rmd stintPara, eval=FALSE, echo=FALSE} `r name` completed `r sum(abs(stints[stints['name']==name,]['l']))` laps over `r nrow(stints[stints['name']==name,])` stints, with a longest run of `r max(abs(stints[stints['name']==name,]['l']))` laps. ```
and then do something like:
```{r results='asis'} stints['name']=factor(stints$name) for (name in levels(stints$name)){ cat(paste0(knit_child('stintPara',quiet=TRUE),'nn')) } ```
Is anything like that possible?
PS via the knitr Google Group, h/t Jeff Newmiller for pointing me to the knit_child() text argument…
To leave a comment for the author, please follow the link and comment on their blog: OUseful.Info, the blog... » Rstats.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.