grid.segments(grid)
grid.segments()所属R语言包:grid
Draw Line Segments
绘制线段
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions create and draw line segments.
这些功能创建和绘制线段。
用法----------Usage----------
grid.segments(x0 = unit(0, "npc"), y0 = unit(0, "npc"),
x1 = unit(1, "npc"), y1 = unit(1, "npc"),
default.units = "npc",
arrow = NULL,
name = NULL, gp = gpar(), draw = TRUE, vp = NULL)
segmentsGrob(x0 = unit(0, "npc"), y0 = unit(0, "npc"),
x1 = unit(1, "npc"), y1 = unit(1, "npc"),
default.units = "npc",
arrow = NULL, name = NULL, gp = gpar(), vp = NULL)
参数----------Arguments----------
参数:x0
Numeric indicating the starting x-values of the line segments.
数字显示开始的线段的x值。
参数:y0
Numeric indicating the starting y-values of the line segments.
数字显示开始的线段的y值。
参数:x1
Numeric indicating the stopping x-values of the line segments.
数字显示停止线段的x值。
参数:y1
Numeric indicating the stopping y-values of the line segments.
数字显示停止线段的y值。
参数:default.units
A string.
一个字符串。
参数:arrow
A list describing arrow heads to place at either end of the line segments, as produced by the arrow function.
列表描述箭头放置在arrow函数的行段,两端。
参数:name
A character identifier.
字符识别。
参数:gp
An object of class 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 segments grob (a graphical object describing segments), but only grid.segments draws the segments (and then only if draw is TRUE).
这两个函数创建一个段GROB(图形对象描述段),但只有grid.segments提请段(然后只有draw是TRUE)。
值----------Value----------
A segments grob. grid.segments returns the value invisibly.
一个分部GROB。 grid.segments返回无形的价值。
作者(S)----------Author(s)----------
Paul Murrell
参见----------See Also----------
Grid, viewport, arrow
电网,viewport,arrow
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|