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


R语言 mode()用法及代码示例


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"

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Get or Set the Type of an Object in R Programming – mode() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。