grid.move.to(grid)
grid.move.to()所属R语言包:grid
Move or Draw to a Specified Position
移动或绘制到指定位置
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Grid has the notion of a current location. These functions sets that location.
网格有一个当前位置的概念。这些功能设置该位置。
用法----------Usage----------
grid.move.to(x = 0, y = 0, default.units = "npc", name = NULL,
draw = TRUE, vp = NULL)
moveToGrob(x = 0, y = 0, default.units = "npc", name = NULL, vp = NULL)
grid.line.to(x = 1, y = 1, default.units = "npc",
arrow = NULL, name = NULL,
gp = gpar(), draw = TRUE, vp = NULL)
lineToGrob(x = 1, y = 1, default.units = "npc", arrow = NULL,
name = NULL, gp = gpar(), vp = NULL)
参数----------Arguments----------
参数:x
A numeric value or a unit object specifying an x-value.
一个数值或一个单位的对象指定x值。
参数:y
A numeric value or a unit object specifying a y-value.
一个数值或单位指定的y值的对象。
参数:default.units
A string indicating the default units to use if x or y are only given as numeric values.
一个字符串,指示如果x或y只数值默认单位使用。
参数:arrow
A list describing arrow heads to place at either end of the line, as produced by the arrow function.
列表描述箭头头放置在任该行的末尾,制作arrow功能。
参数:name
A character identifier.
字符识别。
参数:draw
A logical value indicating whether graphics output should be produced.
一个逻辑值,指示是否应当制作图形输出。
参数: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。这基本上是一个图形参数设置列表。
参数:vp
A Grid viewport object (or NULL).
一个网格视口对象(或NULL)。
Details
详情----------Details----------
Both functions create a move.to/line.to grob (a graphical object describing a move-to/line-to), but only grid.move.to/line.to() draws the move.to/line.to (and then only if draw is TRUE).
这两个函数创建一个move.to / line.to,GROB(图形对象描述move-to/line-to),但只有grid.move.to/line.to()投篮move.to的/ line.to(然后只有当draw是TRUE)。
值----------Value----------
A move.to/line.to grob. grid.move.to/line.to() returns the value invisibly.
一个move.to / line.to GROB。 grid.move.to/line.to()返回无形的价值。
作者(S)----------Author(s)----------
Paul Murrell
参见----------See Also----------
Grid, viewport, arrow
电网,viewport,arrow
举例----------Examples----------
grid.newpage()
grid.move.to(0.5, 0.5)
grid.line.to(1, 1)
grid.line.to(0.5, 0)
pushViewport(viewport(x=0, y=0, w=0.25, h=0.25, just=c("left", "bottom")))
grid.rect()
grid.grill()
grid.line.to(0.5, 0.5)
popViewport()
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|