R語言
Constants
位於 base
包(package)。 說明
內置常量R.
用法
LETTERS
letters
month.abb
month.name
pi
細節
R有少量內置常量。
以下常量可用:
-
LETTERS
:羅馬字母表的26個大寫字母; -
letters
:羅馬字母表中的26個小寫字母; -
month.abb
:英文月份名稱的三個字母縮寫; -
month.name
:一年中月份的英文名稱; -
pi
:圓的周長與其直徑的比率。
這些在基本命名空間中作為變量實現,並采用適當的值。
例子
## John Machin (ca 1706) computed pi to over 100 decimal places
## using the Taylor series expansion of the second term of
pi - 4*(4*atan(1/5) - atan(1/239))
## months in English
month.name
## months in your current locale
format(ISOdate(2000, 1:12, 1), "%B")
format(ISOdate(2000, 1:12, 1), "%b")
參考
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
也可以看看
Quotes
用於解析字符常量,NumericConstants
用於解析數字常量。
相關用法
- R Control 控製流
- R Colon 冒號運算符
- R Comparison 關係運算符
- R CallExternal C/C++ 代碼的現代接口
- R Cstack_info 報告有關 C 堆棧大小和使用情況的信息
- R file.path 構造文件路徑
- R grep 模式匹配和替換
- R getwd 獲取或設置工作目錄
- R vector 向量 - 創建、強製等
- R lapply 對列表或向量應用函數
- R dump R 對象的文本表示
- R Sys.getenv 獲取環境變量
- R rank 樣本排名
- R getDLLRegisteredRoutines DLL 中 C/Fortran 例程的反射信息
- R pushBack 將文本推回連接
- R strsplit 分割字符向量的元素
- R seq.Date 生成規則的日期序列
- R invisible 將打印模式更改為不可見
- R noquote “無引號”字符串打印類
- R warning 警告信息
- R rapply 遞歸地將函數應用於列表
- R basename 操作文件路徑
- R with 評估數據環境中的表達式
- R formals 訪問和操縱形式參數
- R icuSetCollate 按 ICU 設置整理
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Built-in Constants。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。