grid.rect(grid)
grid.rect()所属R语言包:grid
Draw rectangles
绘制矩形
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions create and draw rectangles.
这些功能创建和绘制矩形。
用法----------Usage----------
grid.rect(x = unit(0.5, "npc"), y = unit(0.5, "npc"),
width = unit(1, "npc"), height = unit(1, "npc"),
just = "centre", hjust = NULL, vjust = NULL,
default.units = "npc", name = NULL,
gp=gpar(), draw = TRUE, vp = NULL)
rectGrob(x = unit(0.5, "npc"), y = unit(0.5, "npc"),
width = unit(1, "npc"), height = unit(1, "npc"),
just = "centre", hjust = NULL, vjust = NULL,
default.units = "npc", name = NULL,
gp=gpar(), vp = NULL)
参数----------Arguments----------
参数:x
A numeric vector or unit object specifying x-location.
一个数值向量或单位对象指定的x位置。
参数:y
A numeric vector or unit object specifying y-location.
指定一个数值向量或单位对象的y位置。
参数:width
A numeric vector or unit object specifying width.
一个数值向量或指定单位的对象宽度。
参数:height
A numeric vector or unit object specifying height.
一个数值向量或指定单位的对象高度。
参数:just
The justification of the rectangle relative to its (x, y) location. If there are two values, the first value specifies horizontal justification and the second value specifies vertical justification. Possible string values are: "left", "right", "centre", "center", "bottom", and "top". For numeric values, 0 means left alignment and 1 means right alignment.
其(X,Y)的位置相对矩形的理由。如果有两个值,第一个值指定水平的理由,第二个值指定垂直对齐。可能的字符串值是:"left","right","centre","center","bottom","top"。对于数值,0表示左对齐,右对齐1手段。
参数:hjust
A numeric vector specifying horizontal justification. If specified, overrides the just setting.
一个数值向量指定横向理由。如果指定,覆盖just设置。
参数:vjust
A numeric vector specifying vertical justification. If specified, overrides the just setting.
一个数值向量指定垂直理由。如果指定,覆盖just设置。
参数: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.
字符识别。
参数:gp
An object of class gpar, typically the output from a call to the function gpar. This is basically a list of graphical parameter settings.
一个类的对象gpar,通常从调用输出函数gpar。这基本上是一个图形参数设置列表。
参数:draw
A logical value indicating whether graphics output should be produced.
一个逻辑值,指示是否应当制作图形输出。
参数:vp
A Grid viewport object (or NULL).
一个网格视口对象(或NULL)。
Details
详情----------Details----------
Both functions create a rect grob (a graphical object describing rectangles), but only grid.rect draws the rectangles (and then only if draw is TRUE).
这两个函数创建一个矩形GROB(图形对象描述矩形),但只grid.rect绘制矩形(然后draw只有是TRUE)。
值----------Value----------
A rect grob. grid.rect returns the value invisibly.
一个RECT GROB。 grid.rect返回无形的价值。
作者(S)----------Author(s)----------
Paul Murrell
参见----------See Also----------
Grid, viewport
电网,viewport
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|