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


R語言 is.table()用法及代碼示例


is.table()R語言中的函數用於檢查對象是否為表。

用法: is.table(x)

參數:
x:檢查對象

範例1:


# R Program to check
# if an object is a table
  
# Creating a vector
vec = c(2, 4, 3, 1, 2, 3, 2, 1, 4, 2) 
  
# calling is.table() Function
is.table(vec)
  
# Converting to table
x <- as.table(vec)
x
  
# Calling is.table() again
is.table(x)

輸出:

[1] FALSE
A B C D E F G H I J 
2 4 3 1 2 3 2 1 4 2 
[1] TRUE

範例2:


# R Program to convert 
# an object to a table
  
# Creating a matrix
mat = matrix(c(1:9), 3, 3)
  
# Calling is.table() function
is.table(mat)
  
# Converting to table
x <- as.table(mat)
x
  
# Calling is.table() function again
is.table(x)

輸出:

[1] FALSE
  A B C
A 1 4 7
B 2 5 8
C 3 6 9
[1] TRUE

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Check if an Object is a Table in R Programming – is.table() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。