admin管理员组

文章数量:1126346

I've made some functions that take in 8 separate programs and create an object of 8 separate lists containing 9 different charts for each of these programs.

total = lapply(dfs, \(i) {list(
  age = table_fun(i, age, 'age', "Age"),
  mil = table_fun(i, military, 'military', 'Veteran Status'),
etc.

such that the following will provide me each chart in the first list.

for (i in total[1]){
  print(i)
}

I would then like to use Quarto to output 8 separate pdf reports for each of the 8 separate lists (each program). How can I do this?

本文标签: rUsing Quarto to output multiple pdf reportsStack Overflow