R語言
roman
位於 utils
包(package)。 說明
將(一小組)整數簡單地處理為羅馬數字。
用法
as.roman(x)
.romans
r1 + r2
r1 <= r2
max(r1)
sum(r2)
參數
x |
阿拉伯數字或羅馬數字的數字或字符向量。 |
r1, r2 |
羅馬數字向量,即 |
細節
as.roman
創建 "roman"
類的對象,這些對象在內部表示為整數,並具有合適的打印、格式化、子集、強製等方法,請參閱 methods(class = "roman")
。
算術("Arith"
), 比較 ("Compare"
) 和 ("Logic"
),即所有"Ops"
群組操作與常規號碼一樣,通過R的整數函數。
隻有 1 到 3899 之間的數字具有羅馬數字的唯一表示形式,因此其他數字會導致 as.roman(NA)
。
.romans
是基本字典,一個名為character
的向量。
例子
## First five roman 'numbers'.
(y <- as.roman(1 : 5))
## Middle one.
y[3]
## Current year as a roman number.
(y <- as.roman(format(Sys.Date(), "%Y")))
## Today, and 10, 20, 30, and 100 years ago ...
y - 10*c(0:3,10)
## mixture of arabic and roman numbers :
as.roman(c(NA, 1:3, "", strrep("I", 1:6))) # + NA with a warning for "IIIIII"
cc <- c(NA, 1:3, strrep("I", 0:5))
(rc <- as.roman(cc)) # two NAs: 0 is not "roman"
(ic <- as.integer(rc)) # works automatically [without an explicit method]
rNA <- as.roman(NA)
## simple consistency checks -- arithmetic when result is in {1,2,..,3899} :
stopifnot(identical(rc, as.roman(rc)), # as.roman(.) is "idempotent"
identical(rc + rc + (3*rc), rc*5),
identical(ic, c(NA, 1:3, NA, 1:5)),
identical(as.integer(5*rc), 5L*ic),
identical(as.numeric(rc), as.numeric(ic)),
identical(rc[1], rNA),
identical(as.roman(0), rNA),
identical(as.roman(NA_character_), rNA),
identical(as.list(rc), as.list(ic)))
## Non-Arithmetic 'Ops' :
stopifnot(exprs = {
# Comparisons :
identical(ic < 1:5, rc < 1:5)
identical(ic < 1:5, rc < as.roman(1:5))
# Logic [integers |-> logical] :
identical(rc & TRUE , ic & TRUE)
identical(rc & FALSE, ic & FALSE)
identical(rc | FALSE, ic | FALSE)
identical(rc | NA , ic | NA)
})
## 'Summary' group functions (and comparison):
(rc. <- rc[!is.na(rc)])
stopifnot(exprs = {
identical(min(rc), as.roman(NA))
identical(min(rc, na.rm=TRUE),
as.roman(min(ic, na.rm=TRUE)))
identical(range(rc.),
as.roman(range(as.integer(rc.))))
identical(sum (rc, na.rm=TRUE), as.roman("XXI"))
identical(format(prod(rc, na.rm=TRUE)), "DCCXX")
format(prod(rc.)) == "DCCXX"
})
參考
Wikipedia contributors (2006). Roman numerals. Wikipedia, The Free Encyclopedia. https://en.wikipedia.org/w/index.php?title=Roman_numerals&oldid=78252134. Accessed September 29, 2006.
相關用法
- R readRegistry 讀取 Windows 注冊表配置單元
- R removeSource 從函數或語言對象中刪除存儲的源
- R read.DIF 從電子表格輸入數據
- R remove.packages 刪除已安裝的軟件包
- R relist 允許重新列出未列出()的對象
- R read.socket 從套接字讀取或寫入
- R rtags 類似 Etags 的 R 標記實用程序
- R read.table 數據輸入
- R rcompgen R 的補全生成器
- R recover 錯誤後瀏覽
- R read.fortran 以類似 Fortran 的方式讀取固定格式數據
- R read.fwf 讀取固定寬度格式文件
- R select.list 從列表中選擇項目
- R COMPILE 編譯用於 R 的文件
- R browseVignettes 在 HTML 瀏覽器中列出暈影
- R hasName 檢查姓名
- R nsl 按主機名查找 IP 地址
- R edit 調用文本編輯器
- R create.post 準備電子郵件和帖子的輔助函數
- R hsearch-utils 幫助搜索實用程序
- R download.packages 從類似 CRAN 的存儲庫下載軟件包
- R DLL.version MS Windows 上的 DLL 版本信息
- R ls.str 列表對象及其結構
- R Rscript R 前端腳本
- R bug.report 發送錯誤報告
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Roman Numerals。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。