dev.size(grDevices)
dev.size()所属R语言包:grDevices
Find Size of Device Surface
查找设备表面的大小
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Find the dimensions of the device surface of the current device.
当前设备的设备表面的尺寸。
用法----------Usage----------
dev.size(units = c("in", "cm", "px"))
参数----------Arguments----------
参数:units
the units in which to return the value – inches, cm, or pixels (device units).
各单位在返回的值 - 英寸,厘米,或像素(设备单位)。
值----------Value----------
A two-element numeric vector giving width and height of the current device; a new device is opened if there is none, similarly to dev.new().
由两个元素组成的数字向量给当前设备的宽度和高度的一个新设备被打开,如果没有,同样dev.new()。
参见----------See Also----------
The size information in inches can be obtained by par("din"), but this provides a way to access it independent of the graphics sub-system in use. Note that par("din") is only updated when a new plot is started, whereas dev.size tracks the size as an on-screen device is resized.
par("din")可以得到英寸大小的信息,但提供了一种方法来访问它使用子图形系统独立。请注意par("din")只更新时启动一个新的图,而dev.size追踪大小作为屏幕上的设备被调整大小。
举例----------Examples----------
dev.size("cm")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|