我正在使用 knitr 软件包中的kable()
在html文档上显示表格。是否可以使其排序?一些示例代码
---
title: "Test"
output: html_document
---
```{r, echo=FALSE, comment=""}
kable(data.frame("a"=1:10,"b"=11:20),digits=2)
```
最佳答案
软件包 DT (https://github.com/rstudio/DT)是JavaScript库DataTables的R接口(interface)。您可以在R Markdown中使用它,例如
```{r}
DT::datatable(iris)
```
关于r - 在rMarkdown中是否可以有可排序的(交互式)表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27120002/