The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
Interactive data tables for R, based on the React Table library and made with reactR.
You can install reactable from CRAN with:
install.packages("reactable")
Or install the development version from GitHub with:
# install.packages("devtools")
::install_github("glin/reactable") devtools
To create a table, use reactable()
on a data frame or
matrix:
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:
library(shiny)
library(reactable)
<- fluidPage(
ui reactableOutput("table")
)
<- function(input, output) {
server $table <- renderReactable({
outputreactable(iris)
})
}
shinyApp(ui, server)
To learn more about using reactable, check out the examples below.
IE / Edge |
Firefox |
Chrome |
Safari |
Opera |
---|---|---|---|---|
IE 11*, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
* Support for Internet Explorer 11 was deprecated in reactable v0.4.0.
MIT
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.