Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rstudio/DT
R Interface to the jQuery Plug-in DataTables
https://github.com/rstudio/DT
datatables htmlwidgets javascript r r-package shiny
Last synced: 2 days ago
JSON representation
R Interface to the jQuery Plug-in DataTables
- Host: GitHub
- URL: https://github.com/rstudio/DT
- Owner: rstudio
- License: other
- Created: 2014-11-11T21:28:04.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T19:08:16.000Z (7 months ago)
- Last Synced: 2024-04-14T22:17:39.701Z (7 months ago)
- Topics: datatables, htmlwidgets, javascript, r, r-package, shiny
- Language: JavaScript
- Homepage: https://rstudio.github.io/DT/
- Size: 8.39 MB
- Stars: 581
- Watchers: 78
- Forks: 181
- Open Issues: 183
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-shiny-extensions - DT - R interface to the DataTables library. (UI Components / Table)
- awesome-r-dataviz - DT - R Interface to the jQuery Plug-in DataTables. (Tables / Miscellaneous)
- jimsghstars - rstudio/DT - R Interface to the jQuery Plug-in DataTables (JavaScript)
README
# An R interface to the DataTables library
[![R-CMD-check](https://github.com/rstudio/DT/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rstudio/DT/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/rstudio/DT/branch/main/graph/badge.svg)](https://app.codecov.io/gh/rstudio/DT?branch=main)
[![Downloads from the RStudio CRAN mirror](https://cranlogs.r-pkg.org/badges/DT)](https://cran.r-project.org/package=DT)This package provides a function `datatable()` to display R data via the [DataTables](https://datatables.net/) library (N.B. not to be confused with the **data.table** package).
## Installation
You may install the stable version from CRAN, or the development version using **remotes**:
```r
# install from CRAN
install.packages('DT')# or the development version if necessary
# install.packages("pak")
pak::pak('rstudio/DT')# then try DT::datatable(iris) as a hello world example
```See the full documentation at . Please use [Github issues](https://github.com/rstudio/DT/issues) only if you want to file bug reports or feature requests, and you are expected to ask questions on [StackOverflow](https://stackoverflow.com/questions/tagged/dt) with at least the tags `r` and `dt`.
Please note that due to limited resources, this package is currently in the maintenance-only mode. The only priority is to fix important bugs. We welcome you to submit pull requests to implement new features or fix bugs, but cannot guarantee these pull requests will be reviewed or merged (we will try our best). Thanks for your understanding! BTW, you may also consider [other packages for making tables](https://bookdown.org/yihui/rmarkdown-cookbook/table-other.html), although **DT** has a few unique features that are unlikely to be available in other packages.