R语言
grid.lines
位于 grid
包(package)。 说明
这些函数创建并绘制一系列线条。
用法
grid.lines(x = unit(c(0, 1), "npc"),
y = unit(c(0, 1), "npc"),
default.units = "npc",
arrow = NULL, name = NULL,
gp=gpar(), draw = TRUE, vp = NULL)
linesGrob(x = unit(c(0, 1), "npc"),
y = unit(c(0, 1), "npc"),
default.units = "npc",
arrow = NULL, name = NULL,
gp=gpar(), vp = NULL)
grid.polyline(...)
polylineGrob(x = unit(c(0, 1), "npc"),
y = unit(c(0, 1), "npc"),
id=NULL, id.lengths=NULL,
default.units = "npc",
arrow = NULL, name = NULL,
gp=gpar(), vp = NULL)
参数
x |
指定 x-values 的数值向量或单位对象。 |
y |
指定 y-values 的数值向量或单位对象。 |
default.units |
指示 |
arrow |
说明要放置在行两端的箭头的列表,由 |
name |
字符标识符。 |
gp |
类 |
draw |
指示是否应生成图形输出的逻辑值。 |
vp |
网格视口对象(或 NULL)。 |
id |
用于将 |
id.lengths |
用于将 |
... |
传递给 |
细节
前两个函数创建一个线条对象(说明线条的图形对象),grid.lines
绘制线条(如果 draw
是 TRUE
)。
后两个函数创建或绘制折线组,它就像线组一样,只是可以绘制多条不同的线。
值
线组或多段线组。 grid.lines
以不可见的方式返回行 grob。
例子
grid.lines()
# Using id (NOTE: locations are not in consecutive blocks)
grid.newpage()
grid.polyline(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(col=1:5, lwd=3))
# Using id.lengths
grid.newpage()
grid.polyline(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(col=1:5, lwd=3))
作者
Paul Murrell
也可以看看
相关用法
- R grid.locator 捕获鼠标点击
- R grid.layout 创建网格布局
- R grid.ls 列出 grobs 或视口的名称
- R grid.curve 在位置之间绘制曲线
- R grid.draw 画一个网格
- R grid.stroke 描边或填充路径
- R grid.raster 渲染光栅对象
- R grid.points 绘制数据符号
- R grid.force 强制将一个对象放入其组件中
- R grid.display.list 控制网格显示列表
- R grid.show.viewport 绘制网格视口图
- R grid.segments 绘制线段
- R grid.frame 创建用于包装对象的框架
- R grid.group 画一个组
- R grid.pack 将对象打包在框架内
- R grid.text 绘制文字
- R grid.xspline 绘制 X 样条线
- R grid.copy 制作网格图形对象的副本
- R grid.record 封装计算和绘图
- R grid.pretty 生成一组合理(“漂亮”)的断点
- R grid.grab 抓取当前电网输出
- R grid.show.layout 绘制网格布局图
- R grid.convert 不同网格坐标系之间的转换
- R grid.DLapply 修改网格显示列表
- R grid.delay 封装计算并生成grob
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Draw Lines in a Grid Viewport。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。