R语言中的mode()函数用于获取或设置对象的类型或存储方式。
用法:
mode(x)
mode(x) <- value
Here "value" is the desired mode or ‘storage mode’ (type) of the object
参数:
x:R对象
范例1:
# R program to illustrate
# mode function
# Initializing some values
x <- 3
y <- "a"
# Calling the mode() function
mode(x)
mode(y)
输出:
[1] "numeric" [1] "character"
范例2:
# R program to illustrate
# mode function
# Initializing some values
x <- 3
y <- "a"
# Calling mode() function to
# set the storage mode of the object
mode(x) <- "character"
mode(y) <- "numeric"
# Getting the assigned storage mode
mode(x)
mode(y)
输出:
[1] "character" [1] "numeric"
相关用法
- R语言 type.convert()用法及代码示例
- R语言 call()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.integer()用法及代码示例
- R语言 is.numeric()用法及代码示例
- R语言 is.complex()用法及代码示例
- R语言 names()用法及代码示例
- R语言 ncol()用法及代码示例
- R语言 nrow()用法及代码示例
- R语言 max()用法及代码示例
- R语言 min()用法及代码示例
- R语言 get()用法及代码示例
- R语言 sapply()用法及代码示例
- R语言 typeof()用法及代码示例
- R语言 levels()用法及代码示例
- R语言 dim()用法及代码示例
- R语言 structure()用法及代码示例
- R语言 head()用法及代码示例
- R语言 tail()用法及代码示例
- R语言 args()用法及代码示例
- R语言 identity()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Get or Set the Type of an Object in R Programming – mode() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。