Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 404 Bytes

DT.md

File metadata and controls

18 lines (14 loc) · 404 Bytes
title
DT
create_dt <- function(x){
  DT::datatable(x,
                extensions = 'Buttons',
                options = list(dom = 'Blfrtip',
                               buttons = c('copy', 'csv', 'excel', 'pdf', 'print'),
                               lengthMenu = list(c(10,25,50,-1),
                                                 c(10,25,50,"All"))))
}

## create_dt(iris)