Top "Dt" questions

DT is an R package that provides an interface to the JavaScript library DataTables.

datatable does not render in Shiny Dashboard

The datatable does not render in a Shinydashboard. It just renders a thin white strip for the box. Running only …

r datatable shiny shinydashboard dt
DT in Shiny and R: Custom number formatting

I have a shiny-app that displays a datatable using the DT-package. What I want is to be able to format …

r shiny dt
Shrink DT::dataTableOutput Size

I have a shiny interface, and I use DT::dataTableOutput and DT::renderDataTable a lot. However, I wonder if there's …

r shiny dt
Add comma to numbers every three digits in datatable (R)

Suppose my data looks like this: df1 = data.frame(A=c(1000000.51,5000.33), B=c(0.565,0.794)) I want to use DataTables and have …

r format number-formatting dt
How do I get the data from the selected rows of a filtered datatable (DT)?

The DT package allows you to get the indices of selected rows using input$tableID_rows_selected. This works great …

r shiny dt
Remove "Showing 1 to N of N Entries" Shiny DT

Issue: I'm looking to remove the showing 1 to n of n entries field in shiny DT. Please see picture below …

r shiny dt
Add download buttons in DT::renderDataTable

I am trying to add download buttons ('copy', 'csv', 'excel', 'pdf') above the table in my R Shiny app, but …

r shiny dt
How can I reduce row height in DT datatables

I would like to be able to get 'slimmer' rows when rendering a DT datatable (ie decrease that height) options(…

r shiny dt
Adjusting the width of the datatable using DT in R

This is a script for a data table that is created in R shiny.I am trying to fit the …

r shiny shinydashboard dt