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"
相关用法
- R语言 class()用法及代码示例
- R语言 type.convert()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.complex()用法及代码示例
- R语言 data.matrix()用法及代码示例
- R语言 with()用法及代码示例
- R语言 sample()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.integer()用法及代码示例
- R语言 is.numeric()用法及代码示例
- R语言 mode()用法及代码示例
- R语言 determinant()用法及代码示例
- R语言 length()用法及代码示例
- R语言 charmatch()用法及代码示例
- R语言 col()用法及代码示例
- R语言 det()用法及代码示例
- R语言 row()用法及代码示例
- R语言 strftime()用法及代码示例
- R语言 density()用法及代码示例
- R语言 outer()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting type of different data types in R Programming – typeof() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。