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


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