我有一个 R markdown,我在其中构建了一个表格,我想添加将表格下载到 excel 文件的选项。
kable(MyTable) %>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed",
"responsive")) %>%
scroll_box(width = "900px", height = "500px")
Run Code Online (Sandbox Code Playgroud)