grid.null(grid)
grid.null()所属R语言包:grid
Null Graphical Object
空的图形对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions create a NULL graphical object, which has zero width, zero height, and draw nothing. It can be used as a place-holder or as an invisible reference point for other drawing.
这些功能创建一个空的图形对象,它具有零宽度,高度为零,画什么。它可以用来作为一个地方的持有人或其他绘图作为一个无形的参考点。
用法----------Usage----------
nullGrob(x = unit(0.5, "npc"), y = unit(0.5, "npc"),
default.units = "npc",
name = NULL, vp = NULL)
grid.null(...)
参数----------Arguments----------
参数:x
A numeric vector or unit object specifying x-location.
一个数值向量或单位对象指定的x位置。
参数:y
A numeric vector or unit object specifying y-location.
指定一个数值向量或单位对象的y位置。
参数:default.units
A string indicating the default units to use if x, y, width, or height are only given as numeric vectors.
只给一个字符串,表示如果x,y,width或height使用的默认单位为数字向量。
参数:name
A character identifier.
字符识别。
参数:vp
A Grid viewport object (or NULL).
一个网格视口对象(或NULL)。
参数:...
Arguments passed to nullGrob().
参数传递到nullGrob()。
值----------Value----------
A null grob.
一个空GROB。
作者(S)----------Author(s)----------
Paul Murrell
参见----------See Also----------
Grid, viewport
电网,viewport
举例----------Examples----------
grid.newpage()
grid.null(name="ref")
grid.rect(height=grobHeight("ref"))
grid.segments(0, 0, grobX("ref", 0), grobY("ref", 0))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|