grid.circle(grid)
grid.circle()所属R语言包:grid
Draw a Circle
画一个圆
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Functions to create and draw a circle.
函数来创建和绘制一个圆。
用法----------Usage----------
grid.circle(x=0.5, y=0.5, r=0.5, default.units="npc", name=NULL,
gp=gpar(), draw=TRUE, vp=NULL)
circleGrob(x=0.5, y=0.5, r=0.5, 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位置。
参数:r
A numeric vector or unit object specifying radii.
一个数值向量或单位对象指定半径。
参数: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 circle grob (a graphical object describing a circle), but only grid.circle() draws the circle (and then only if draw is TRUE).
这两个函数创建一个圆圈,GROB(图形对象描述了一圈),但只有grid.circle()投篮圈(然后只有draw是TRUE)。
The radius may be given in any units; if the units are relative (e.g., "npc" or "native") then the radius will be different depending on whether it is interpreted as a width or as a height. In such cases, the smaller of these two values will be the result. To see the effect, type grid.circle() and adjust the size of the window.
半径可在任何单位,如果单位是相对的(例如,"npc"或"native")半径会有所不同,无论是作为一个宽度或解释作为一个高度。在这种情况下,将是这两个值中较小的结果。看到效果,键入grid.circle()和调整窗口的大小。
值----------Value----------
A circle grob. grid.circle() returns the value invisibly.
一个圆GROB。 grid.circle()返回无形的价值。
警告----------Warning----------
Negative values for the radius are silently converted to their absolute value.
半径为负值默默转化为他们的绝对值。
作者(S)----------Author(s)----------
Paul Murrell
参见----------See Also----------
Grid, viewport
电网,viewport
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|