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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。