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


R unit.rep 复制单元对象的元素


R语言 unit.rep 位于 grid 包(package)。

说明

根据 timeslength.out 中给出的值复制单元。

此函数已被弃用,取而代之的是通用 rep 函数的单元方法。

用法

unit.rep(x, ...)

参数

x

"unit" 的对象。

...

要传递给 rep 的参数,例如 timeslength.out

"unit" 的对象。

例子

rep(unit(1:3, "npc"), 3)
rep(unit(1:3, "npc"), 1:3)
rep(unit(1:3, "npc") + unit(1, "inches"), 3)
rep(max(unit(1:3, "npc") + unit(1, "inches")), 3)
rep(max(unit(1:3, "npc") + unit(1, "strwidth", "a"))*4, 3)
rep(unit(1:3, "npc") + unit(1, "strwidth", "a")*4, 3)

作者

Paul Murrell

也可以看看

rep

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Replicate Elements of Unit Objects。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。