R语言shiny中DT包


The R package DT provides an R interface to the JavaScript library DataTables. R data objects (matrices or data frames) can be displayed as tables on HTML pages, and DataTables provides filtering, pagination, sorting, and many other features in the tables.

You may install the stable version from CRAN, or the development version using devtools::install_github('rstudio/DT') if necessary (this website reflects the development version of DT):

# if (!require("DT")) install.packages('DT')
library(DT)
devtools::session_info()
##  setting  value                       
##  version  R version 3.4.3 (2017-11-30)
##  system   x86_64, darwin15.6.0        
##  ui       X11                         
##  language (EN)                        
##  collate  en_US.UTF-8                 
##  tz       America/Chicago             
##  date     2018-01-03                  
## 
##  package     * version date       source                            
##  backports     1.1.2   2017-12-13 CRAN (R 3.4.3)                    
##  base        * 3.4.3   2017-12-07 local                             
##  compiler      3.4.3   2017-12-07 local                             
##  datasets    * 3.4.3   2017-12-07 local                             
##  devtools      1.13.4  2017-11-09 CRAN (R 3.4.2)                    
##  digest        0.6.13  2017-12-14 CRAN (R 3.4.3)                    
##  DT          * 0.2.17  2018-01-03 local                             
##  evaluate      0.10.1  2017-06-24 CRAN (R 3.4.1)                    
##  graphics    * 3.4.3   2017-12-07 local                             
##  grDevices   * 3.4.3   2017-12-07 local                             
##  htmltools     0.3.6   2017-04-28 CRAN (R 3.4.0)                    
##  htmlwidgets   0.9     2017-07-10 CRAN (R 3.4.1)                    
##  knitr         1.18.4  2018-01-03 Github (yihui/knitr@0a9a502)      
##  magrittr      1.5     2014-11-22 CRAN (R 3.4.0)                    
##  memoise       1.1.0   2017-04-21 CRAN (R 3.4.0)                    
##  methods       3.4.3   2017-12-07 local                             
##  Rcpp          0.12.14 2017-11-23 CRAN (R 3.4.2)                    
##  rmarkdown     1.8.5   2018-01-03 Github (rstudio/rmarkdown@561b812)
##  rprojroot     1.3-1   2017-12-18 CRAN (R 3.4.3)                    
##  stats       * 3.4.3   2017-12-07 local                             
##  stringi       1.1.6   2017-11-17 CRAN (R 3.4.2)                    
##  stringr       1.2.0   2017-02-18 CRAN (R 3.4.0)                    
##  tools         3.4.3   2017-12-07 local                             
##  utils       * 3.4.3   2017-12-07 local                             
##  withr         2.1.1   2017-12-19 CRAN (R 3.4.3)                    
##  yaml          2.1.16  2017-12-12 CRAN (R 3.4.3)

Please use Github issues to file bug reports or feature requests, and use StackOverflow to ask questions.

1 Usage

The main function in this package is datatable(). It creates an HTML widget to display R data objects with DataTables.

datatable(data, options = list(), class = "display",
    callback = JS("return table;"), rownames, colnames, container,
    caption = NULL, filter = c("none", "bottom", "top"), escape = TRUE,
    style = "default", width = NULL, height = NULL, elementId = NULL,
    fillContainer = getOption("DT.fillContainer", NULL),
    autoHideNavigation = getOption("DT.autoHideNavigation", NULL),
    selection = c("multiple", "single", "none"), extensions = list(),
    plugins = NULL)

Here is a “hello world” example with zero configuration:

library(DT)
datatable(iris)

2 Arguments

If you are familiar with DataTables already, you may use the options argument to customize the table. See the page Options for details. Here we explain the rest of the arguments of the datatable() function.

2.1 Table CSS Classes

The class argument specifies the CSS classes of the table. The possible values can be found on the page of default styling options. The default value display basically enables row striping, row highlighting on mouse over, row borders, and highlighting ordered columns. You can choose a different combination of CSS classes, such as cell-border and stripe:

datatable(head(iris), class = 'cell-border stripe')

2.2 Styling

Currently, DT only supports the Bootstrap style besides the default style. You can use the argument style = 'bootstrap' to enable the Bootstrap style, and adjust the table classes accordingly using Bootstrap table class names, such as table-stripe and table-hover. Actually, DT will automatically adjust the class names even if you provided the DataTables class names such as stripe and hover.

DT:::DT2BSClass('display')
## [1] "table table-striped table-hover"
DT:::DT2BSClass(c('compact', 'cell-border'))
## [1] "table table-condensed table-bordered"

Note you can only use one style for all tables on one page. Please see this separate page for examples using the Bootstrap style.

2.3 Display Row Names

If the data object has row names, they will be displayed as the first column of the table by default. You can suppress row names via the argument rownames = FALSE, and you can also change row names by providing a different character vector to rownames.

datatable(head(mtcars))
datatable(head(mtcars), rownames = FALSE)  # no row names
datatable(head(mtcars), rownames = head(LETTERS))  # new row names
Influence of Row Names on Column Indices in JavaScript

Row names are essentialy a new column added to the original data (via cbind(rownames(data), data)). This has an important consequence in terms of the column indices. JavaScript indexes from 0 instead of 1, so the index of the n-th element is actually n - 1.1When thinking of the column indices (which you will often have to do if you customize options), use

  • n - 1 as the index of the n-th column in the original data if you do not display row names;
  • n as the index of the n-th column in the original data if you want to display row names, because the original index is n - 1 in JavaScript but we added the row names as the first column, and (n - 1) + 1 = n;

It is very important to remember this when using DataTables options.

2.4 Custom Column Names

By default, datatable() shows the column names of the data in the table, and you can use a custom character vector for the table header. There are a few possibilities. The first one is, you provide a new character vector to completely replace the column names of the data, e.g.

# colnames(iris) is a character vector of length 5, and we replace it
datatable(head(iris), colnames = c('Here', 'Are', 'Some', 'New', 'Names'))

This can be cumbersome if you only want to replace one or two names, and you do not want to provide a whole vector of names. Then here is the second possibility: you can provide a shorter numeric or character vector as the index vector to replace a subset of the column names. For example, if you only want the 2nd name to be 'A Nicer Name', you can use datatable(..., colnames = c('A Nicer Name' = 2)); or if you want to replace the name 'X5' with 'A Better Name', you can use colnames = c('A Better Name' = 'X5').

datatable(head(iris), colnames = c('A Better Name' = 'Sepal.Width'))
datatable(head(iris), colnames = c('Another Better Name' = 2, 'Yet Another Name' = 4))

When you display row names of the data, its column name will be a white space by default. That is why you cannot see its column name. You can certainly choose to use a column name for rownames as well, e.g.

# change the first column name to 'ID'
datatable(head(iris), colnames = c('ID' = 1))

2.5 Custom Table Container

The container argument allows you to provide a different table container to hold the table cells. By default, the container is generated from the column names. Below is an example of a custom table header:

# a custom table container
sketch = htmltools::withTags(table(
  class = 'display',
  thead(
    tr(
      th(rowspan = 2, 'Species'),
      th(colspan = 2, 'Sepal'),
      th(colspan = 2, 'Petal')
    ),
    tr(
      lapply(rep(c('Length', 'Width'), 2), th)
    )
  )
))
print(sketch)
<table class="display">
  <thead>
    <tr>
      <th rowspan="2">Species</th>
      <th colspan="2">Sepal</th>
      <th colspan="2">Petal</th>
    </tr>
    <tr>
      <th>Length</th>
      <th>Width</th>
      <th>Length</th>
      <th>Width</th>
    </tr>
  </thead>
</table>
# use rownames = FALSE here because we did not generate a cell for row names in
# the header, and the header only contains five columns
datatable(iris[1:20, c(5, 1:4)], container = sketch, rownames = FALSE)

You can also add a footer to the table container, and here is an example:

# a custom table with both header and footer
sketch = htmltools::withTags(table(
  tableHeader(iris),
  tableFooter(iris)
))
print(sketch)
<table>
  <thead>
    <tr>
      <th>Sepal.Length</th>
      <th>Sepal.Width</th>
      <th>Petal.Length</th>
      <th>Petal.Width</th>
      <th>Species</th>
    </tr>
  </thead>
  <tfoot>
    <tr>
      <th>Sepal.Length</th>
      <th>Sepal.Width</th>
      <th>Petal.Length</th>
      <th>Petal.Width</th>
      <th>Species</th>
    </tr>
  </tfoot>
</table>
datatable(
  head(iris, 10),
  container = sketch, options = list(pageLength = 5, dom = 'tip'), rownames = FALSE
)
Sepal.Length Sepal.Width Petal.Length Petal.Width Species
Sepal.Length Sepal.Width Petal.Length Petal.Width Species
5.1 3.5 1.4 0.2 setosa
4.9 3 1.4 0.2 setosa
4.7 3.2 1.3 0.2 setosa
4.6 3.1 1.5 0.2 setosa
5 3.6 1.4 0.2 setosa
Showing 1 to 5 of 10 entries

2.6 Table Caption

You can add a table caption via the caption argument. It can be either a character vector, or a tag object created from htmltools::tags$caption(). See this blog post for more information on table captions.

datatable(
  head(iris),
  caption = 'Table 1: This is a simple caption for the table.'
)
# display the caption at the bottom, and <em> the caption
datatable(
  head(iris),
  caption = htmltools::tags$caption(
    style = 'caption-side: bottom; text-align: center;',
    'Table 2: ', htmltools::em('This is a simple caption for the table.')
  )
)

2.7 Column Filters

DataTables does not provide column filters by default. There is only a global filter (the search box on the top-right). We added a filterargument in datatable() to automatically generate column filters. By default, the filters are not shown since filter = 'none'. You can enable these filters by filter = 'top' or 'bottom', depending on whether you want to put the filters on the top or bottom of the table.

iris2 = iris[c(1:10, 51:60, 101:110), ]
datatable(iris2, filter = 'top', options = list(
  pageLength = 5, autoWidth = TRUE
))

Depending on the type of a column, the filter control can be different. Initially, you see search boxes for all columns. When you click the search boxes, you may see different controls:

  • For numeric/date/time columns, range sliders are used to filter rows within ranges;
  • For factor columns, selectize inputs are used to display all possible categories, and you can select multiple categories there (note you can also type in the box to search in all categories);
  • For character columns, ordinary search boxes are used to match the values you typed in the boxes;

When you leave the initial search boxes, the controls will be hidden and the filtering values (if there are any) are stored in the boxes:

  • For numeric/date/time columns, the values displayed in the boxes are of the form low ... high;
  • For factor columns, the values are serialized as a JSON array of the form ["value1", "value2", "value3"];

When a column is filtered, there will be a clear button  in its search box, and you can click the button to clear the filter. If you do not want to use the controls, you can actually type in the search boxes directly, e.g. you may type 2 ... 5 to filter a numeric column, and the range of its slider will automatically adjusted to [2, 5]. In case you find a search box too narrow and it is difficult to read the values in it, you may mouse over the box and its values will be displayed as a tooltip. See this example for how to hide the clear buttons, and use plain text input styles instead of Bootstrap.

Below is a simple example to demonstrate filters for character, date, and time columns:

d = data.frame(
  names = rownames(mtcars),
  date = as.Date('2015-03-23') + 1:32,
  time = as.POSIXct('2015-03-23 12:00:00', tz = 'UTC') + (1:32) * 5000,
  stringsAsFactors = FALSE
)
str(d)
## 'data.frame':    32 obs. of  3 variables:
##  $ names: chr  "Mazda RX4" "Mazda RX4 Wag" "Datsun 710" "Hornet 4 Drive" ...
##  $ date : Date, format: "2015-03-24" "2015-03-25" ...
##  $ time : POSIXct, format: "2015-03-23 13:23:20" "2015-03-23 14:46:40" ...
datatable(d, filter = 'bottom', options = list(pageLength = 5))
  names date time
 
1 Mazda RX4 2015-03-24 2015-03-23T13:23:20Z
2 Mazda RX4 Wag 2015-03-25 2015-03-23T14:46:40Z
3 Datsun 710 2015-03-26 2015-03-23T16:10:00Z
4 Hornet 4 Drive 2015-03-27 2015-03-23T17:33:20Z
5 Hornet Sportabout 2015-03-28 2015-03-23T18:56:40Z
Showing 1 to 5 of 32 entries

Filtering in the above examples was done on the client side (using JavaScript in your web browser). Column filters also work in the server-side processing mode, in which case filtering will be processed on the server, and there may be some subtle differences (e.g. JavaScript regular expressions are different with R). See here for an example of column filters working on the server side.

Known Issues of Column Filters

The position of column filters may be off when scrolling is enabled in the table, e.g. via the options scrollX and/or scrollY. The appearance may be affected by Shiny sliders, as reported in #49.

2.8 The callback argument

The argument callback takes the body of a JavaScript function that will be applied to the DataTables object after initialization. Below is an example to show the next page after the table is initialized2:

datatable(head(iris, 30), callback = JS('table.page("next").draw(false);'))

In the above example, the actual callback function on the JavaScript side is this (callback is only the body of the function):

function(table) {
  table.page("next").draw(false);
}

After we initialize the table via the .DataTable() method in DataTables, the DataTables instance is passed to this callback function. Below are a few more examples:

Please note this callback argument is only an argument of the datatable() function, and do not confuse it with the callbacks in the DataTables options. The purpose of this argument is to allow users to manipulate the DataTables object after its creation.

2.9 Escaping Table Content

The argument escape determines whether the HTML entities in the table are escaped or not. There can be potential security problems when the table is rendered in dynamic web applications such as Shiny if you do not escape them. Here is a quick example:

m = matrix(c(
  '<b>Bold</b>', '<em>Emphasize</em>', '<a href="http://rstudio.com">RStudio</a>',
  '<a href="#" onclick="alert(\'Hello World\');">Hello</a>'
), 2)
colnames(m) = c('<span style="color:red">Column 1</span>', '<em>Column 2</em>')
datatable(m)  # escape = TRUE by default
datatable(m, escape = FALSE)

Besides TRUE and FALSE, you can also specify which columns you want to escape, e.g.

datatable(m, escape = 1)  # escape the first column
datatable(m, escape = 2)  # escape the second column
datatable(m, escape = c(TRUE, FALSE))  # escape the first column
colnames(m) = c('V1', 'V2')
datatable(m, escape = 'V1')
  • 0
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值