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 remotes::install_github('rstudio/DT')
if necessary (this website reflects the development version of DT):
# if (!require("DT")) install.packages('DT')
::session_info('DT') xfun
## R version 4.3.0 (2023-04-21)
## Platform: x86_64-apple-darwin20 (64-bit)
## Running under: macOS Monterey 12.6.5
##
##
## Locale: en_US.UTF-8 / en_US.UTF-8 / en_US.UTF-8 / C / en_US.UTF-8 / en_US.UTF-8
##
## time zone: America/Chicago
## tzcode source: internal
##
## Package version:
## base64enc_0.1.3 bslib_0.4.2 cachem_1.0.7 cli_3.6.1
## crosstalk_1.2.0 digest_0.6.31 DT_0.27 ellipsis_0.3.2
## evaluate_0.20.1 fastmap_1.1.1 fontawesome_0.5.1 fs_1.6.1
## glue_1.6.2 graphics_4.3.0 grDevices_4.3.0 highr_0.10
## htmltools_0.5.5 htmlwidgets_1.6.2 jquerylib_0.1.4 jsonlite_1.8.4
## knitr_1.42.7 later_1.3.0 lazyeval_0.2.2 lifecycle_1.0.3
## magrittr_2.0.3 memoise_2.0.1 methods_4.3.0 mime_0.12
## promises_1.2.0.1 R6_2.5.1 rappdirs_0.3.3 Rcpp_1.0.10
## rlang_1.1.0 rmarkdown_2.21 sass_0.4.5 stats_4.3.0
## stringi_1.7.12 stringr_1.5.0 tinytex_0.45.1 tools_4.3.0
## utils_4.3.0 vctrs_0.6.2 xfun_0.39 yaml_2.3.7
Please use Github issues to file bug reports or feature requests, and use StackOverflow to ask questions.
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 = "auto", 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, editable = FALSE)
Here is a “hello world” example with zero configuration:
library(DT)
datatable(iris)
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.
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')
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
.
:::DT2BSClass('display')
DT## [1] "table table-striped table-hover row-border order-column display"
:::DT2BSClass(c('compact', 'cell-border'))
DT## [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.
You can enable table editing using the argument editable
(see ?DT::datatable
for its possible values). Then you will be able to double-click a cell to edit its value. It works in both client-side and server-side processing modes. Below are two client-side examples (also see a Shiny example with server-side processing):
::datatable(head(iris), editable = 'cell') DT
::datatable(head(iris), editable = list(
DTtarget = 'row', disable = list(columns = c(1, 3, 4))
))
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
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.1 When thinking of the column indices (which you will often have to do if you customize options), use
It is very important to remember this when using DataTables options.
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))
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
= htmltools::withTags(table(
sketch 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
= htmltools::withTags(table(
sketch 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
)
DataTables does not provide column filters by default. There is only a global filter (the search box on the top-right). We added a filter
argument 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.
= iris[c(1:10, 51:60, 101:110), ]
iris2 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:
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:
low ... high
;["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:
= data.frame(
d 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))
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.
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.
callback
argumentThe 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) {
.page("next").draw(false);
table }
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.
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:
= matrix(c(
m '<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')
Please be cautious when using row names with numeric column indices. Since the row names will become the first column in the display, you should increase the column indices by one, e.g.,
rownames(m) = seq_len(nrow(m))
datatable(m, escape = 1 + 1) # escape the first column