Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Interactive data tables for R

License

NotificationsYou must be signed in to change notification settings

glin/reactable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRAN StatusBuild Statuscodecovlifecycle

Interactive data tables for R, based on theReact Table library and made withreactR.

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

Installation

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")

Usage

To create a table, usereactable() on a data frame or matrix:

library(reactable)reactable(iris)

reactable example using the iris dataset

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.

Examples

Browser Support

Edge
Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
Opera
Opera
Edgelast 2 versionslast 2 versionslast 2 versionslast 2 versions

License

MIT

About

Interactive data tables for R

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Contributors10


[8]ページ先頭

©2009-2025 Movatter.jp