当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。