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


R typeof 对象的类型


R语言 typeof 位于 base 包(package)。

说明

typeof确定 (R任何对象的内部)类型或存储模式

用法

typeof(x)

参数

x

任何R对象。

一个字符串。结构中列出了可能的值TypeTable在 'src/main/util.c’。当前值是向量类型"logical","integer","double","complex","character","raw""list","NULL","closure"(函数),"special""builtin"(基本函数和运算符),"environment","S4"(一些 S4 对象)以及其他不太可能在用户级别看到的对象("symbol","pairlist","promise","language","char","...","any","expression","externalptr","bytecode""weakref")。

例子

typeof(2)
mode(2)
## for a table of examples, see  ?mode  /  examples(mode)

也可以看看

modestorage.mode

isS4 确定对象是否具有 S4 类。

相关用法


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