grid.layout
位於 grid
包(package)。 說明
該函數返回一個網格布局,它說明了矩形區域的細分。
用法
grid.layout(nrow = 1, ncol = 1,
widths = unit(rep_len(1, ncol), "null"),
heights = unit(rep_len(1, nrow), "null"),
default.units = "null", respect = FALSE,
just="centre")
參數
nrow |
說明布局中行數的整數。 |
ncol |
說明布局中的列數的整數。 |
widths |
說明布局中列寬度的數值向量或單位對象。 |
heights |
說明布局中行的高度的數值向量或單位對象。 |
default.units |
指示 |
respect |
邏輯值或數字矩陣。如果符合邏輯,則表明行高和列寬是否應相互尊重。如果是矩陣,非零值表示應遵守相應的行和列(請參見下麵的示例)。 |
just |
字符串或數字向量,指定布局與其父視口大小不同時應如何調整布局。如果有兩個值,則第一個值指定水平對齊方式,第二個值指定垂直對齊方式。可能的字符串值為: |
細節
為布局的 widths
和 heights
指定的單元對象可以使用僅對布局有意義的特殊 units
。這是 "null"
單位,它指示列/行占用的可用寬度/高度的相對分數。有關布局中相對寬度和高度的更好說明,請參閱引用。
值
網格布局對象。
警告
此函數不得與基本 R 圖形函數 layout
混淆。特別是,不要將 layout
與網格圖形結合使用。 layout
的文檔可能提供一些有用的信息,並且該函數在類似情況下的行為應該相同。 grid.layout
函數添加了指定更廣泛的行高和列寬單位的函數,並允許嵌套布局(請參閱 viewport
)。
例子
## A variety of layouts (some a bit mid-bending ...)
layout.torture()
## Demonstration of layout justification
grid.newpage()
testlay <- function(just="centre") {
pushViewport(viewport(layout=grid.layout(1, 1, widths=unit(1, "inches"),
heights=unit(0.25, "npc"),
just=just)))
pushViewport(viewport(layout.pos.col=1, layout.pos.row=1))
grid.rect()
grid.text(paste(just, collapse="-"))
popViewport(2)
}
testlay()
testlay(c("left", "top"))
testlay(c("right", "top"))
testlay(c("right", "bottom"))
testlay(c("left", "bottom"))
testlay(c("left"))
testlay(c("right"))
testlay(c("bottom"))
testlay(c("top"))
作者
Paul Murrell
參考
Murrell, P. R. (1999). Layouts: A Mechanism for Arranging Plots on a Page. Journal of Computational and Graphical Statistics, 8, 121-134. doi:10.2307/1390924.
也可以看看
相關用法
- R grid.locator 捕獲鼠標點擊
- R grid.lines 在網格視口中繪製線條
- 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大神的英文原創作品 Create a Grid Layout。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。