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


R Constants 内置常量


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.

也可以看看

dataDateTimeClasses

Quotes 用于解析字符常量,NumericConstants 用于解析数字常量。

相关用法


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