addTable.RTF {rtf} | R Documentation |
Insert a table into the RTF document
Description
Insert a table into the RTF document.
Usage
## S3 method for class 'RTF'
addTable(this, dat, col.widths=NULL, col.justify=NULL, header.col.justify=NULL,
font.size=NULL, row.names=FALSE, NA.string="-", space.before=NULL, space.after=NULL,
...)
Arguments
this |
An RTF object. |
dat |
A matrix, data frame, or table. |
col.widths |
A |
col.justify |
A single value or |
header.col.justify |
A single value or |
font.size |
Font size in points. optional. |
row.names |
Boolean argument to include row names in tables. optional. |
NA.string |
A character string to replace NA values in the table. |
space.before |
Space before each row (in inches). optional. |
space.after |
Space after each row (in inches). optional. |
... |
Not used. |
Author(s)
Michael E. Schaffer
See Also
For more information see RTF
.
Examples
rtf<-RTF("test_addTable.doc",width=8.5,height=11,font.size=10,omi=c(1,1,1,1))
addTable(rtf,as.data.frame(head(iris)),font.size=10,row.names=FALSE,NA.string="-",
col.widths=rep(1,5))
tab<-table(iris$Species,floor(iris$Sepal.Length))
names(dimnames(tab))<-c("Species","Sepal Length")
addTable(rtf,tab,font.size=10,row.names=TRUE,NA.string="-",col.widths=c(1,rep(0.5,4)) )
done(rtf)
[Package rtf version 0.4-14.1 Index]