table_rtf generates an RTF table from a data frame.
table_rtf(
df,
outFile = NULL,
rtfFile = TRUE,
boldHeader = TRUE,
rowNames = FALSE,
...
)A data frame.
A filename for writing the table to. If NULL, writes to console.
If TRUE (the default), then add RTF tabs to generate a fully formatted RTF file.
If TRUE, make the header bold.
If TRUE, include row names in the table. Default is FALSE.
Other formatting options for the table body.
An RTF table based on the data frame provided.
if (FALSE) { # \dontrun{
scm <- read_scm("E:/DrugX/ModelDevelopment/scm310")
myRTF <- table_rtf(scm$forwardSummary)
} # }