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
版权声明:本文标题:r - Using Quarto to output multiple pdf reports - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736681254a1947433.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论