當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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