grid.polygon(grid)
grid.polygon()所属R语言包:grid
Draw a Polygon
绘制多边形
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions create and draw a polygon. The final point will automatically be connected to the initial point.
这些功能创建和绘制一个多边形。最后一点,将自动连接到初始点。
用法----------Usage----------
grid.polygon(x=c(0, 0.5, 1, 0.5), y=c(0.5, 1, 0.5, 0),
id=NULL, id.lengths=NULL,
default.units="npc", name=NULL,
gp=gpar(), draw=TRUE, vp=NULL)
polygonGrob(x=c(0, 0.5, 1, 0.5), y=c(0.5, 1, 0.5, 0),
id=NULL, id.lengths=NULL,
default.units="npc", name=NULL,
gp=gpar(), vp=NULL)
参数----------Arguments----------
参数:x
A numeric vector or unit object specifying x-locations.
一个数值向量或单位对象指定x的位置。
参数:y
A numeric vector or unit object specifying y-locations.
一个数值向量或单位对象指定的y位置。
参数:id
A numeric vector used to separate locations in x and y into multiple polygons. All locations with the same id belong to the same polygon.
一个数值向量,使用分开x和y成多个多边形的位置。所有位置具有相同的id属于同一多边形。
参数:id.lengths
A numeric vector used to separate locations in x and y into multiple polygons. Specifies consecutive blocks of locations which make up separate polygons.
一个数值向量,使用分开x和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.
字符识别。
参数: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 polygon grob (a graphical object describing a polygon), but only grid.polygon draws the polygon (and then only if draw is TRUE).
这两个函数创建一个多边形的格罗(描述一个多边形图形对象),但只有grid.polygon绘制多边形(然后只有draw是TRUE)。
值----------Value----------
A grob object.
一个GROB对象。
作者(S)----------Author(s)----------
Paul Murrell
参见----------See Also----------
Grid, viewport
电网,viewport
举例----------Examples----------
grid.polygon()
# Using id (NOTE: locations are not in consecutive blocks)[使用id(注:位置不连续的块)]
grid.newpage()
grid.polygon(x=c((0:4)/10, rep(.5, 5), (10:6)/10, rep(.5, 5)),
y=c(rep(.5, 5), (10:6/10), rep(.5, 5), (0:4)/10),
id=rep(1:5, 4),
gp=gpar(fill=1:5))
# Using id.lengths[使用id.lengths]
grid.newpage()
grid.polygon(x=outer(c(0, .5, 1, .5), 5:1/5),
y=outer(c(.5, 1, .5, 0), 5:1/5),
id.lengths=rep(4, 5),
gp=gpar(fill=1:5))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|