Description Usage Arguments Author(s) See Also Examples
Insert a table into the RTF document.
1 2 3 4 |
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. |
Michael E. Schaffer
For more information see RTF
.
1 2 3 4 5 6 7 8 9 10 | 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.