本文于2020-10-10更新。 如发现问题或者有建议,欢迎提交 Issue
library(tidyverse)
library(DT)
1 加标题 (Xie 2018)
iris %>%
datatable(caption = "Table 1: This is a simple caption for the table.")
2 表格中插入链接 (Xie 2018)
'<a href="http://rstudio.com">RStudio</a>' %>%
as_tibble() %>%
datatable(escape = F)
escape = F
参数可以让文本变成超链接。
Xie, Yihui. 2018. “DT: An R Interface to the Datatables Library.” 2018. https://rstudio.github.io/DT/.