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
相關用法
- R語言 as.table()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 is.matrix()用法及代碼示例
- R語言 is.list()用法及代碼示例
- R語言 exists()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 is.integer()用法及代碼示例
- R語言 is.numeric()用法及代碼示例
- R語言 is.complex()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 is.call()用法及代碼示例
- R語言 is.expression()用法及代碼示例
- R語言 is.unsorted()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 read.table()用法及代碼示例
- R語言 table()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
- R語言 identity()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 call()用法及代碼示例
- R語言 cumprod()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Check if an Object is a Table in R Programming – is.table() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。