Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.4%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
Interactive data tables for R
Basic Info
- Host: GitHub
- Owner: glin
- License: other
- Language: JavaScript
- Default Branch: main
- Homepage: https://glin.github.io/reactable
- Size: 43.6 MB
Statistics
- Stars: 663
- Watchers: 15
- Forks: 81
- Open Issues: 164
- Releases: 12
Topics
Metadata Files
README.md
reactable
Interactive data tables for R, based on the React Table library and made with reactR.
Features
- 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
Demos
- Twitter Followers
- Women's World Cup Predictions
- NBA Box Score
- CRAN Packages
- Spotify Charts
- Popular Movies
- Demo Cookbook
- 100k Rows
- Shiny Demo
Installation
You can install reactable from CRAN with:
r
install.packages("reactable")
Or install the development version from GitHub with: ```r
install.packages("devtools")
devtools::install_github("glin/reactable") ```
Usage
To create a table, use reactable() on a data frame or matrix:
```r
library(reactable)
reactable(iris) ```
You can embed tables in R Markdown or Quarto documents:
`
{r}
library(reactable)
reactable(iris)
`
Or use them in Shiny applications: ```r 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.
Examples
- 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
Browser Support
| 
Edge | 
Firefox | 
Chrome | 
Safari | 
Opera |
| --------- | --------- | --------- | --------- | --------- |
| Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
License
MIT
Owner
- Name: Greg Lin
- Login: glin
- Kind: user
- Location: Houston, TX
- Company: @posit-dev
- Repositories: 25
- Profile: https://github.com/glin
GitHub Events
Total
- Issues event: 24
- Watch event: 33
- Delete event: 8
- Issue comment event: 57
- Push event: 51
- Pull request review event: 3
- Pull request event: 4
- Fork event: 5
- Create event: 9
Last Year
- Issues event: 24
- Watch event: 33
- Delete event: 8
- Issue comment event: 57
- Push event: 51
- Pull request review event: 3
- Pull request event: 4
- Fork event: 5
- Create event: 9
Committers
Last synced: 8 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Greg Lin | g****n@g****o | 1,120 |
| dependabot[bot] | 4****] | 11 |
| Krystian Igras | k****s@c****m | 3 |
| laresbernardo | l****o@g****m | 2 |
| katies (Katie Snapinn) | k****s@c****g | 2 |
| Tom | 9****2 | 2 |
| Carson | c****1@g****m | 2 |
| Tyler Bradley | t****y@p****v | 1 |
| Colin Gillespie | c****e@g****m | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 189
- Total pull requests: 14
- Average time to close issues: 2 months
- Average time to close pull requests: 5 months
- Total issue authors: 149
- Total pull request authors: 7
- Average comments per issue: 2.53
- Average comments per pull request: 1.14
- Merged pull requests: 6
- Bot issues: 0
- Bot pull requests: 6
Past Year
- Issues: 22
- Pull requests: 4
- Average time to close issues: about 1 month
- Average time to close pull requests: about 1 month
- Issue authors: 20
- Pull request authors: 3
- Average comments per issue: 0.59
- Average comments per pull request: 0.5
- Merged pull requests: 3
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- daattali (7)
- dleopold (4)
- olivroy (4)
- sprucemister (3)
- novotny1akub (3)
- khusmann (3)
- sciordia (3)
- glin (3)
- ShixiangWang (3)
- nick-youngblut (3)
- mrworthington (3)
- Patrikios (2)
- wvictor14 (2)
- Jorge-hercas (2)
- JauntyJJS (2)
Pull Request Authors
- dependabot[bot] (6)
- tommarshall2 (2)
- cpsievert (2)
- laresbernardo (1)
- krystian8207 (1)
- andia89 (1)
- lenafm (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 2
-
Total downloads:
- cran 206,464 last-month
- Total docker downloads: 86,816
-
Total dependent packages: 35
(may contain duplicates) -
Total dependent repositories: 132
(may contain duplicates) - Total versions: 18
- Total maintainers: 1
cran.r-project.org: reactable
Interactive Data Tables for R
- Homepage: https://glin.github.io/reactable/
- Documentation: http://cran.r-project.org/web/packages/reactable/reactable.pdf
- License: MIT + file LICENSE
-
Latest release: 0.4.4
published almost 3 years ago
Rankings
Maintainers (1)
conda-forge.org: r-reactable
- Homepage: https://glin.github.io/reactable, https://github.com/glin/reactable
- License: MIT
-
Latest release: 0.3.0
published over 3 years ago
Rankings
Dependencies
- R >= 3.1 depends
- digest * imports
- htmltools * imports
- htmlwidgets * imports
- jsonlite * imports
- reactR * imports
- MASS * suggests
- covr * suggests
- crosstalk * suggests
- dplyr * suggests
- fontawesome * suggests
- leaflet * suggests
- rmarkdown * suggests
- shiny * suggests
- sparkline * suggests
- testthat * suggests
- tippy * suggests
- 748 dependencies
- @babel/core ^7.4.0 development
- @babel/eslint-parser ^7.13.8 development
- @babel/preset-env ^7.4.2 development
- @babel/preset-react ^7.0.0 development
- @emotion/jest ^11.3.0 development
- @testing-library/jest-dom ^5.14.1 development
- @testing-library/react ^12.0.0 development
- autoprefixer ^10.4.7 development
- babel-loader ^8.2.2 development
- babel-plugin-transform-react-remove-prop-types ^0.4.24 development
- css-loader ^3.6.0 development
- cssnano ^5.1.9 development
- eslint ^7.21.0 development
- eslint-plugin-jest ^22.4.1 development
- eslint-plugin-jsx-a11y ^6.2.3 development
- eslint-plugin-react ^7.12.4 development
- eslint-plugin-react-hooks ^4.0.8 development
- identity-obj-proxy ^3.0.0 development
- jest ^27.1.0 development
- postcss ^8.4.14 development
- postcss-loader ^4.3.0 development
- prettier ^2.0.5 development
- style-loader ^2.0.0 development
- webpack ^5.36.2 development
- webpack-cli ^4.6.0 development
- @emotion/css ^11.1.3
- prop-types ^15.7.2
- react ^17.0.0
- react-dom ^17.0.0
- react-table ^7.6.2
- JamesIves/github-pages-deploy-action v4.3.3 composite
- actions/checkout v3 composite
- actions/setup-node v3 composite
- codecov/codecov-action v3 composite
- nwtgck/actions-netlify v1.2 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
