RTF(rtf)
RTF()所属R语言包:rtf
The RTF class
RTF类
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This is the class representing an RTF file output.
这是类代表一个RTF文件输出。
Package: rtf <br> Class RTF<br>
包装:RTF参考类RTF参考
Object<br> ~~|<br> ~~+--RTF<br>
Object参考~~|参考~~+--“RTF参考
Directly known subclasses:<br> <br>
直接已知子类:参考参考
public static class RTF<br> extends Object<br>
公共静态类RTF参考扩展对象参考
用法----------Usage----------
RTF(file="", width=8.5, height=11, omi=c(1, 1, 1, 1), font.size=10)
参数----------Arguments----------
参数:file
The path of the output file.
输出文件的路径。
参数:width
The width of the output page.
输出页的宽度。
参数:height
The width of the output page.
输出页的宽度。
参数:omi
A vector representing the outer margins in inches (bottom, left, top, right).
Avector的边缘英寸(下,左,上,右)。
参数:font.size
Default font size for the document in points.
点中的文件的默认字体大小。
参数:...
Not used.
未使用。
域和方法----------Fields and Methods----------
Methods:<br>
方法:参考
addHeader
addHeader
addNewLine
addNewLine
addPageBreak
addPageBreak
addParagraph
addParagraph
addPlot
addPlot
addPng
addPng
addSessionInfo
addSessionInfo
addTable
addTable
addText
addText
addTrellisObject
addTrellisObject
decreaseIndent
decreaseIndent
done
done
endParagraph
endParagraph
increaseIndent
increaseIndent
setFontSize
setFontSize
startParagraph
startParagraph
view
view
Methods inherited from Object:<br> [[, [[<-, $, $<-, as.character, attach, attachLocally, clearCache, clearLookupCache, clone, detach, equals, extend, finalize, gc, getEnvironment, getFieldModifier, getFieldModifiers, getFields, getInstantiationTime, getStaticInstance, hasField, hashCode, ll, load, objectSize, print, registerFinalizer, save
从Object继承的方法: - [[[[< - ,$,$ <, - ,as.character,连接,attachLocally,clearCache,clearLookupCache,克隆,分离,等于,扩展,完成,GC,getEnvironment, getFieldModifier,getFieldModifiers,getFields,getInstantiationTime,getStaticInstance,hasField的hashCode,将负载,objectsize,将打印,registerFinalizer,保存
(作者)----------Author(s)----------
Michael E. Schaffer
参见----------See Also----------
For more information see RTF.
有关详细信息,请参阅RTF。
实例----------Examples----------
output<-"test_RTF-class.doc"
png.res<-300
rtf<-RTF(output,width=8.5,height=11,font.size=10,omi=c(1,1,1,1))
addHeader(rtf,title="Test",subtitle="2011-08-15\n")
addPlot(rtf,plot.fun=plot,width=6,height=6,res=300, iris[,1],iris[,2])
# Try trellis plots[尝试网格图]
if(require(lattice) & require(grid)) {
# single page trellis objects[单页网格对象]
addPageBreak(rtf, width=11,height=8.5,omi=c(0.5,0.5,0.5,0.5))
p <- histogram( ~ height | voice.part, data = singer, xlab="Height")
addTrellisObject(rtf,trellis.object=p,width=10,height=7.5,res=png.res)
p <- densityplot( ~ height | voice.part, data = singer, xlab = "Height")
addTrellisObject(rtf,trellis.object=p,width=10,height=7.5,res=png.res)
# multipage trellis object[多页网格对象]
p2<-xyplot(uptake ~ conc | Plant, CO2, layout = c(2,2))
addTrellisObject(rtf,trellis.object=p2,width=6,height=6,res=png.res)
}
addPageBreak(rtf, width=6,height=10,omi=c(0.5,0.5,0.5,0.5))
addTable(rtf,as.data.frame(head(iris)),font.size=10,row.names=FALSE,NA.string="-")
addSessionInfo(rtf)
done(rtf)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|