getHTMLTable {PTXQC} | R Documentation |
Create an HTML table with an extra header row
Description
Create an HTML table with an extra header row
Usage
getHTMLTable(data, caption = NA)
Arguments
data |
A data.frame which serves as table |
caption |
A set of headlines, e.g. c("top line", "bottom line") |
Value
table as html character string for cat()'ing into an html document
Examples
data = data.frame(raw.file = letters[1:4],
id.rate = 3:6)
getHTMLTable(data,
caption = "some header line")
[Package PTXQC version 1.1.1 Index]