addTable.RTF(rtf)
addTable.RTF()所属R语言包:rtf
Insert a table into the RTF document
到RTF文档中插入一个表格
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Insert a table into the RTF document.
到RTF文档中插入一个表格。
用法----------Usage----------
参数----------Arguments----------
参数:this
An RTF object.
RTF对象。
参数:dat
A matrix, data frame, or table.
A矩阵,数据框或桌子上。
参数:col.widths
A vector of column widths in inches. optional.
Avector英寸的列宽。可选的。
参数: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.
一个字符的字符串替换表中的NA值。
参数:...
Not used.
未使用。
(作者)----------Author(s)----------
Michael E. Schaffer
参见----------See Also----------
For more information see RTF.
有关详细信息,请参阅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)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|