- Notifications
You must be signed in to change notification settings - Fork81
Interactive data tables for R
License
NotificationsYou must be signed in to change notification settings
glin/reactable
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Interactive data tables for R, based on theReact Table library and made withreactR.
- Sorting, filtering, pagination
- Grouping and aggregation
- Built-in column formatting
- Custom rendering via R or JavaScript — use Shiny HTML tags and HTML widgets in tables
- Expandable rows and nested tables
- Conditional styling
- Works seamlessly within R Markdown documents and Shiny apps
- Twitter Followers
- Women's World Cup Predictions
- NBA Box Score
- CRAN Packages
- Spotify Charts
- Popular Movies
- Demo Cookbook
- 100k Rows
- Shiny Demo
You can install reactable from CRAN with:
install.packages("reactable")Or install the development version from GitHub with:
# install.packages("devtools")devtools::install_github("glin/reactable")
To create a table, usereactable() on a data frame or matrix:
library(reactable)reactable(iris)
You can embed tables inR Markdown orQuarto documents:
```{r}library(reactable)reactable(iris)```Or use them inShiny applications:
library(shiny)library(reactable)ui<- fluidPage( reactableOutput("table"))server<-function(input,output) {output$table<- renderReactable({ reactable(iris) })}shinyApp(ui,server)
To learn more about using reactable, check out the examples below.
- Basic Usage
- Sorting
- Filtering
- Searching
- Pagination
- Grouping and Aggregation
- Column Formatting
- Custom Rendering
- Embedding HTML Widgets
- Footers and Total Rows
- Expandable Rows and Nested Tables
- Conditional Styling
- Table Styling
- Theming
- Column Groups
- Column Resizing
- Sticky Columns
- Row Names and Row Headers
- Cell Click Actions
- Language Options
- Shiny
- Cross-Widget Interactions with Crosstalk
- JavaScript API
![]() Edge | ![]() Firefox | ![]() Chrome | ![]() Safari | ![]() Opera |
|---|---|---|---|---|
| Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
MIT
About
Interactive data tables for R
Topics
Resources
License
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.
Contributors10
Uh oh!
There was an error while loading.Please reload this page.





