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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。