## ----setup, include=FALSE----------------------------------------------------- knitr::opts_chunk$set(echo = TRUE) ## ----basic-------------------------------------------------------------------- library(tableHTML) tableHTML(mtcars) ## ----rownames----------------------------------------------------------------- tableHTML(mtcars, rownames=FALSE) ## ---- eval=FALSE-------------------------------------------------------------- # mytable <- tableHTML(mtcars) # str(mytable) # # Classes 'tableHTML', 'html', 'character' atomic [1:1] # # # # # # # # # # # # truncated... ## ---- eval=FALSE-------------------------------------------------------------- # mytable <- tableHTML(mtcars, class='myClass') # str(mytable) # # Classes 'tableHTML', 'html', 'character' atomic [1:1] # #
mpgcyl
# # # # # # # # # # truncated... ## ----secondheader------------------------------------------------------------- tableHTML(mtcars, second_headers = list(c(3, 4, 5), c('col1', 'col2', 'col3'))) ## ----rowgroups---------------------------------------------------------------- tableHTML(mtcars, rownames = FALSE, row_groups = list(c(10, 10, 12), c('Group 1', 'Group 2', 'Group 3'))) ## ----widths------------------------------------------------------------------- tableHTML(mtcars, widths = rep(100, 12), second_headers = list(c(3, 4, 5), c('col1', 'col2', 'col3'))) ## ----border------------------------------------------------------------------- tableHTML(mtcars, border = 0) ## ----caption------------------------------------------------------------------ tableHTML(mtcars, caption = 'This is a table') ## ----footer------------------------------------------------------------------- tableHTML(mtcars, footer = 'This is a footer') ## ----collapse, eval=FALSE----------------------------------------------------- # tableHTML(mtcars, collapse = 'separate') ## ----collapse2---------------------------------------------------------------- tableHTML(mtcars, collapse = 'separate_shiny') ## ----spacing1----------------------------------------------------------------- tableHTML(mtcars, collapse = 'separate_shiny', spacing = '2px') ## ----spacing2----------------------------------------------------------------- tableHTML(mtcars, collapse = 'separate_shiny', spacing = '5px 2px') ## ----escaping----------------------------------------------------------------- df <- data.frame(a = c('abcd% tableHTML(widths = c(140, rep(45, 11))) %>% add_css_row(css = list(c('background-color', 'border'), c('lightblue', '2px solid lightgray'))) ## ----addcssrow2--------------------------------------------------------------- mtcars %>% tableHTML(widths = c(140, rep(45, 11))) %>% add_css_row(css = list(c('background-color', 'border'), c('lightblue', '2px solid lightgray')), rows = 2:33) ## ----addcssrow3--------------------------------------------------------------- mtcars %>% tableHTML(widths = c(140, rep(45, 11))) %>% add_css_row(css = list('background-color', '#f2f2f2'), rows = odd(1:33)) %>% add_css_row(css = list('background-color', '#e6f0ff'), rows = even(1:33)) ## ----add css column 1--------------------------------------------------------- mtcars %>% tableHTML(widths = c(140, rep(45, 11))) %>% add_css_column(css = list(c('background-color', 'border'), c('lightblue', '3px solid lightgray')), columns = c('cyl', 'hp', 'rownames')) ## ----addcsscolumn2------------------------------------------------------------ mtcars %>% tableHTML(widths = c(140, rep(45, 11))) %>% add_css_row(css = list('background-color', '#f2f2f2')) %>% add_css_column(css = list('background-color', 'lightblue'), columns = c('cyl', 'hp', 'rownames')) ## ---- eval=FALSE-------------------------------------------------------------- # mytable <- tableHTML(mtcars) # print(mytable, viewer = FALSE) #
mpgcyl
# # # # # # truncated... ## ----addcssrowsincolumn------------------------------------------------------- tableHTML(mtcars) %>% add_css_rows_in_column(css = list('background-color', rep(c('red', 'green'), each = 16)), column = 'mpg') ## ----addcssrowsincolumn2------------------------------------------------------ tableHTML(mtcars) %>% add_css_rows_in_column(css = list('background-color', rep(c('red', 'green'), each = 16)), column = 'mpg') %>% add_css_rows_in_column(css = list('background-color', rep(c('green', 'red'), each = 16)), column = 'cyl') ## ----addcssrowsincolumn3------------------------------------------------------ tableHTML(mtcars) %>% add_css_column(css = list('border', '3px solid blue'), columns = c('mpg', 'disp', 'rownames')) %>% add_css_rows_in_column(css = list(c('background-color'), rep(c('red', 'green'), each = 16)), column = 'mpg') ## ----editablecol-------------------------------------------------------------- tableHTML(mtcars) %>% add_editable_column(columns = 'mpg') ## ----addcssheader1------------------------------------------------------------ mtcars %>% tableHTML(widths = c(140, rep(45, 11))) %>% add_css_header(css = list('background-color', 'lightgray'), headers = c(1, 4)) ## ----addcsssecondheader1------------------------------------------------------ mtcars %>% tableHTML(widths = c(140, rep(45, 11)), second_headers = list(c(3, 4, 5), c('col1', 'col2', 'col3'))) %>% add_css_second_header(css = list(c('background-color', 'border'), c('lightgray', '3px solid green')), second_headers = c(1, 3)) ## ----addcsscaption------------------------------------------------------------ mtcars %>% tableHTML(widths = c(140, rep(45, 11)), caption = 'This is a table') %>% add_css_caption(css = list(c('color', 'font-size', 'text-align'), c('blue', '20px', 'left'))) ## ----addcssfooter------------------------------------------------------------- mtcars %>% tableHTML(widths = c(140, rep(45, 11)), footer = 'This is a footer') %>% add_css_footer(css = list(c('color', 'font-size', 'text-align'), c('blue', '20px', 'left'))) ## ----addcssthead-------------------------------------------------------------- mtcars %>% tableHTML() %>% add_css_thead(css = list('background-color', 'lightgray')) ## ----addcsstbody-------------------------------------------------------------- mtcars %>% tableHTML() %>% add_css_tbody(css = list('background-color', 'lightgray')) ## ----theadexample1------------------------------------------------------------ mtcars %>% tableHTML() %>% add_css_thead(css = list('background-color', 'lightgray')) %>% add_css_row(css = list('background-color', 'blue'), rows = 1) ## ----theadexample2------------------------------------------------------------ mtcars %>% tableHTML() %>% add_css_tbody(css = list('background-color', 'lightgray')) %>% add_css_row(css = list('background-color', 'blue'), rows = c(4, 6)) ## ----addcsstable-------------------------------------------------------------- mtcars %>% tableHTML() %>% add_css_table(css = list('background-color', 'lightgray')) ## ----alltogether-------------------------------------------------------------- mtcars %>% tableHTML(widths = c(140, rep(45, 11)), second_headers = list(c(3, 4, 5), c('team1', 'team2', 'team3')), caption = 'Table of Cars', footer = 'Figure 1. Stats for famous cars') %>% add_css_second_header(css = list(c('height', 'background-color', 'font-size'), c('40px', ' #e6e6e6', '30px')), second_headers = 1:3) %>% add_css_header(css = list(c('height', 'background-color'), c('30px', ' #e6e6e6')), headers = 1:12) %>% add_css_row(css = list('background-color', '#f2f2f2'), rows = even(1:34)) %>% add_css_row(css = list('background-color', '#e6f0ff'), rows = odd(1:34)) %>% add_css_column(css = list('text-align', 'center'), columns = names(mtcars)) %>% add_css_caption(css = list(c('text-align', 'font-size', 'color'), c('center', '20px', 'black'))) %>% add_css_footer(css = list(c('text-align', 'color'), c('left', 'black'))) ## ----hyperlink1--------------------------------------------------------------- #escape needs to be set to FALSE tableHTML(data.frame(cran = make_hyperlink(c('https://cran.r-project.org/', 'https://cran.r-project.org/package=tableHTML'))), escape = FALSE) ## ----hyperlink2--------------------------------------------------------------- #escape needs to be set to FALSE tableHTML(data.frame(cran = make_hyperlink(c('https://cran.r-project.org/', 'https://cran.r-project.org/package=tableHTML'), c('cran', 'tableHTML'))), escape = FALSE) ## ----replacehtml-------------------------------------------------------------- mtcars %>% tableHTML(widths = c(140, rep(45, 11))) %>% replace_html(' ', '') ## ----picture, eval=FALSE------------------------------------------------------ # mtcars %>% # tableHTML() %>% # tableHTML_to_image() ## ----shiny1, eval=FALSE------------------------------------------------------- # library(shiny) # shinyApp( # ui = fluidPage( # fluidRow( # #leave some spacing # br(), # column(width = 1), # tableHTML_output("mytable")) # ), # server = function(input, output) { # output$mytable <- render_tableHTML( # tableHTML(mtcars) # )} # ) ## ----shiny2, eval=FALSE------------------------------------------------------- # shinyApp( # ui = fluidPage( # fluidRow( # #leave some spacing # br(), # column(width = 1), # tableHTML_output("mytable")) # ), # server = function(input, output) { # output$mytable <- render_tableHTML( # mtcars %>% # tableHTML(widths = c(140, rep(45, 11)), # second_headers = list(c(3, 4, 5), c('team1', 'team2', 'team3'))) %>% # add_css_second_header(css = list(c('height', 'background-color', 'font-size', 'text-align'), # c('40px', ' #e6e6e6', '30px', 'center')), # second_headers = 1:3) %>% # add_css_header(css = list(c('height', 'background-color', 'text-align'), # c('30px', ' #e6e6e6', 'center')), # headers = 1:12) %>% # add_css_row(css = list('background-color', '#f2f2f2'), # rows = even(1:34)) %>% # add_css_row(css = list('background-color', '#e6f0ff'), # rows = odd(1:34)) %>% # add_css_column(css = list('text-align', 'center'), # columns = names(mtcars)) # )} # ) ## ----shinycss, eval=FALSE----------------------------------------------------- # #ui.R # shinyUI( # fluidPage( # fluidRow( # #leave some spacing # br(), # column(width = 1), # #include css file in shiny # includeCSS('www/mycss.css'), # tableHTML_output("mytable")) # ) # ) # # #server.R # shinyServer( # function(input, output) { # output$mytable <- render_tableHTML( # tableHTML(mtcars, second_headers = list(c(3, 4, 5), c('col1', 'col2', 'col3'))) # )} # ) ## ----css_ex1, echo=FALSE------------------------------------------------------ mtcars %>% tableHTML(second_headers = list(c(3, 4, 5), c('col1', 'col2', 'col3'))) %>% add_css_column(list('border-left', '5px solid red'), columns = 1) ## ----css_ex2, echo=FALSE------------------------------------------------------ mtcars %>% tableHTML(second_headers = list(c(3, 4, 5), c('col1', 'col2', 'col3'))) %>% add_css_column(list('border-left', '5px solid red'), columns = 1) %>% add_css_header(list('background-color', 'green'), 2) ## ----css_ex3, echo=FALSE------------------------------------------------------ mtcars %>% tableHTML(second_headers = list(c(3, 4, 5), c('col1', 'col2', 'col3'))) %>% add_css_column(list('border-left', '5px solid red'), columns = 1) %>% add_css_header(list('background-color', 'green'), 2) %>% add_css_second_header(list('background-color', 'steelblue'), 1)
mpgcyl2121