data.class(base)
data.class()所属R语言包:base
Object Classes
对象类
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Determine the class of an arbitrary R object.
确定一个任意R对象的类。
用法----------Usage----------
data.class(x)
参数----------Arguments----------
参数:x
an R object.
R对象。
值----------Value----------
character string giving the class of x.
字符串给类x。
The class is the (first element) of the class attribute if this is non-NULL, or inferred from the object's dim attribute if this is non-NULL, or mode(x).
类是(第一个元素)class属性,如果这是非NULL,或从对象的dim属性推断,如果这是非NULL,或mode(x)。
Simply speaking, data.class(x) returns what is typically useful for method dispatching. (Or, what the basic creator functions already and maybe eventually all will attach as a class attribute.)
简单来说,data.class(x)返回通常是有用的方法调度。 (或者,什么基本的创造者的功能,也许已经最终都将作为一个阶级属性附加。)
注意----------Note----------
For compatibility reasons, there is one exception to the rule above: When x is integer, the result of data.class(x) is "numeric" even when x is classed.
由于兼容性的原因,上述规则有一个例外:当x是integer,结果data.class(x)是"numeric"即使x被归类。
参见----------See Also----------
class
class
举例----------Examples----------
x <- LETTERS
data.class(factor(x)) # has a class attribute[有一个类的属性]
data.class(matrix(x, ncol = 13)) # has a dim attribute[有一个朦胧的属性]
data.class(list(x)) # the same as mode(x)[作为模式相同(X)]
data.class(x) # the same as mode(x)[作为模式相同(X)]
stopifnot(data.class(1:2) == "numeric")# compatibility "rule"[兼容性“规则”]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|