R語言
grid.segments
位於 grid
包(package)。 說明
這些函數創建並繪製線段。
用法
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)
參數
x0 |
表示線段起始 x-values 的數字。 |
y0 |
表示線段起始 y-values 的數字。 |
x1 |
表示線段停止x-values的數字。 |
y1 |
表示線段停止y-values的數字。 |
default.units |
一個字符串。 |
arrow |
說明放置在線段兩端的箭頭的列表,由 |
name |
字符標識符。 |
gp |
類 |
draw |
指示是否應生成圖形輸出的邏輯值。 |
vp |
網格視口對象(或 NULL)。 |
細節
這兩個函數都會創建一個段 grob(說明段的圖形對象),但隻有 grid.segments
繪製段(並且僅當 draw
是 TRUE
時)。
值
一個細分市場。 grid.segments
以不可見方式返回值。
作者
Paul Murrell
也可以看看
相關用法
- R grid.set 設置網格圖形對象
- R grid.stroke 描邊或填充路徑
- R grid.show.viewport 繪製網格視口圖
- R grid.show.layout 繪製網格布局圖
- R grid.curve 在位置之間繪製曲線
- R grid.draw 畫一個網格
- R grid.raster 渲染光柵對象
- R grid.points 繪製數據符號
- R grid.force 強製將一個對象放入其組件中
- R grid.display.list 控製網格顯示列表
- 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.convert 不同網格坐標係之間的轉換
- R grid.DLapply 修改網格顯示列表
- R grid.delay 封裝計算並生成grob
- R grid.polygon 繪製多邊形
- R grid.function 繪製代表函數的曲線
- R grid.move.to 移動或繪製到指定位置
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Draw Line Segments。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。