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


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


R 语言中的 typeof() 函数用于返回用作参数的数据类型。

用法: typeof(x)

参数:
x:指定数据

范例1:


# R program to illustrate
# typeof function
  
# Specifying "Biochemical oxygen demand"
# data set
x <- BOD
x
  
# Calling typeof() function
typeof(x)

输出:

  Time demand
1    1    8.3
2    2   10.3
3    3   19.0
4    4   16.0
5    5   15.6
6    7   19.8
[1] "list"

范例2:


# R program to illustrate
# typeof function
  
# Calling typeof() function 
# over different types of data 
typeof(2)
typeof(2.8)
typeof("3")
typeof("gfg")
typeof(1 + 2i)

输出:

[1] "double"
[1] "double"
[1] "character"
[1] "character"
[1] "complex"

相关用法


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