View source: R/html_table_design.r
| html_table_design | R Documentation | 
This function designs the a HTML table based on the data frame list returned by the table_prep function.
html_table_design(
  dfl,
  uselabel = TRUE,
  yhead = FALSE,
  footnote = NULL,
  title = "table",
  titlepr = NULL,
  xabove = TRUE,
  group = NULL,
  xrepeat = FALSE,
  tclass = "sample"
)
dfl | 
 list generated by the table_prep function which serves as the base of the table to be generated  | 
uselabel | 
 logical indicating if labels should be used for the x variable(s). If set to TRUE, the function will try to use the label attribute for the display of x variable(s).  | 
yhead | 
 logical indicating if the y variable should also be set as header in the table.  | 
footnote | 
 character string with the footnote to be placed in the footer of the page (HTML coding can be used for example to create line breaks)  | 
title | 
 character string to define the title of the table which will be added to the caption  | 
titlepr | 
 character string to define the prefix of the table title. Can be used to create custom table numbering  | 
xabove | 
 logical indicating if the first unique x variable should be placed in the table row above. Mostly used to save space on a page  | 
group | 
 number indicating which x variables should be grouped (displayed in table with a certain white space) and interpreted as   | 
xrepeat | 
 logical indicating if duplicate x values should be repeated in the table or not  | 
tclass | 
 character string with the table class. Can be used in combination with custom css  | 
This function designs a HTML pivot table based on the results of the table_prep output. This means that the function Should always be used in conjunction with this function.
The function returns a vector that defines the entire HTML table. This vector can be adapted manually however it is intended to be used in a print function to add to a HTML document.
## Not run: html_table_design(lstobject)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.