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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。