當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R units 圖形單位


R語言 units 位於 graphics 包(package)。

說明

xinchyinch 將作為參數給出的指定英寸數轉換為正確的單位,以便使用圖形函數進行繪圖。通常,這僅在使用法線坐標時才有意義,即沒有 log 比例(請參閱 parlog 參數)。

xyinch 同時對一對數字 xy 執行相同的操作。

用法

xinch(x = 1, warn.log = TRUE)
yinch(y = 1, warn.log = TRUE)
xyinch(xy = 1, warn.log = TRUE)

參數

x, y

數值向量

xy

長度為 1 或 2 的數字。

warn.log

邏輯性;如果 TRUE ,則在活動對數刻度的情況下打印警告。

例子

all(c(xinch(), yinch()) == xyinch()) # TRUE
xyinch()
xyinch #- to see that is really   delta{"usr"} / "pin"

## plot labels offset 0.12 inches to the right
## of plotted symbols in a plot
with(mtcars, {
    plot(mpg, disp, pch = 19, main = "Motor Trend Cars")
    text(mpg + xinch(0.12), disp, row.names(mtcars),
         adj = 0, cex = .7, col = "blue")
    })

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Graphical Units。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。