pdf.options(grDevices)
pdf.options()所属R语言包:grDevices
Auxiliary Function to Set/View Defaults for Arguments of pdf
辅助功能设置/查看PDF格式的参数默认
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The auxiliary function pdf.options can be used to set or view (if called without arguments) the default values for some of the arguments to pdf.
辅助功能pdf.options可用于设置或查看(如果不带参数调用)的一些参数的默认值pdf。
pdf.options needs to be called before calling pdf, and the default values it sets can be overridden by supplying arguments to pdf.
pdf.options需要被调用之前调用pdf,它设置的默认值可以通过提供参数pdf覆盖。
用法----------Usage----------
pdf.options(..., reset = FALSE)
参数----------Arguments----------
参数:...
arguments width, height, onefile, family, title, fonts, paper, encoding, pointsize, bg, fg, pagecentre, useDingbats, colormodel, fillOddEven and compress can be supplied.
参数width,height,onefile,family,title,fonts,paper,encoding, pointsize,bg,fg,pagecentre,useDingbats,colormodel,fillOddEven和compress可以提供。
参数:reset
logical: should the defaults be reset to their "factory-fresh" values?
逻辑:应该默认被重置为他们的工厂新鲜的值吗?
Details
详情----------Details----------
If both reset = TRUE and ... are supplied the defaults are first reset to the "factory-fresh" values and then the new values are applied.
如果双方reset = TRUE和...提供默认值重置为第一次的“工厂新鲜的值,然后应用新的价值观。
值----------Value----------
A named list of all the defaults. If any arguments are supplied the return values are the old values and the result has the visibility flag turned off.
命名的所有默认列表。如果提供任何参数,返回值是旧值和结果的可视性标志关闭。
参见----------See Also----------
pdf, ps.options.
pdf,ps.options。
举例----------Examples----------
pdf.options(bg = "pink")
utils::str(pdf.options())
pdf.options(reset = TRUE) # back to factory-fresh[回工厂新鲜]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|