**walk2 to render rmd as one report .html file. **
LR.Rmd :YAML
------------------
params:
** x: **
** value: !r c("Cmax","Cmin")**
** choices:**
** - !r c("Cmax","Cmin")**
** y: 'res'**
---------------------------------------------------
x= c("k", "m", "f")
purrr::walk2(
** list(x, y = 'res'), ~ rmarkdown::render('/home/LR.Rmd',**
** output_file = paste("test", .x, ".html"),**
** params=list(x=.x, y=.y)))**
-----------------------------------------------------------------
Error in map2(.x, .y, .f, ...) : **
** argument ".f" is missing, with no default
--------------------------------------------------------------------------
can anybody comment on resolving this issue?. same code works fine when x= one variable.