R語言
grid.place
位於 grid
包(package)。 說明
這些函數為 grid.pack()
和 packGrob
函數提供了更簡單(更快)的替代方案。它們可用於將對象放置在框架布局的現有行和列中。它們不提供添加新行和列的函數,也不影響行和列的高度和寬度。
用法
grid.place(gPath, grob, row = 1, col = 1, redraw = TRUE)
placeGrob(frame, grob, row = NULL, col = NULL)
參數
gPath |
一個 gPath 對象,指定顯示列表上的一個框架。 |
frame |
類 |
grob |
類 |
row |
將對象添加到哪一行。必須介於 1 和 the-number-of-rows-currently-in-the-frame 之間。 |
col |
將對象添加到哪個列。必須介於 1 和 the-number-of-cols-currently-in-the-frame 之間。 |
redraw |
指示是否應更新輸出的布爾值。 |
細節
placeGrob
修改給定的幀組並返回修改後的幀組。
grid.place
破壞性地修改顯示列表上的幀組(如果 redraw
是 TRUE
則重繪顯示列表)。
值
placeGrob
返回幀 grob,但 grid.place
返回 NULL
。
作者
Paul Murrell
也可以看看
相關用法
- R grid.points 繪製數據符號
- R grid.pack 將對象打包在框架內
- R grid.pretty 生成一組合理(“漂亮”)的斷點
- R grid.polygon 繪製多邊形
- R grid.path 畫一條路徑
- R grid.curve 在位置之間繪製曲線
- R grid.draw 畫一個網格
- R grid.stroke 描邊或填充路徑
- R grid.raster 渲染光柵對象
- R grid.force 強製將一個對象放入其組件中
- R grid.display.list 控製網格顯示列表
- R grid.show.viewport 繪製網格視口圖
- R grid.segments 繪製線段
- R grid.frame 創建用於包裝對象的框架
- R grid.group 畫一個組
- R grid.text 繪製文字
- R grid.xspline 繪製 X 樣條線
- R grid.copy 製作網格圖形對象的副本
- R grid.record 封裝計算和繪圖
- R grid.grab 抓取當前電網輸出
- R grid.show.layout 繪製網格布局圖
- R grid.convert 不同網格坐標係之間的轉換
- R grid.DLapply 修改網格顯示列表
- R grid.delay 封裝計算並生成grob
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Place an Object within a Frame。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。