kable:从彼此顶部而不是彼此相邻的数据框表列表中获取

kable: obtain from a list of dataframe tables on top of each other instead of next to each other

我有一个 data.frame 的嵌套列表,我需要将其导出到 html。 我正在使用 kable 和 writeLines:

kable(list_of_df) %>% writeLines("output.html")

结果如下:

A   B   C   A   B   C       
1   2   3   x   y   z
4   5   6   x   y   z   
7   8   9   x   y   z

不幸的是,我无法弄清楚如何自动将表格放置在彼此之上而不是彼此相邻。

感谢任何帮助。

比我想象的要容易

map(list_of_df,kable) %>% as.character() %>% writeLines("out.html")