R語言中的is.list()函數用於如果指定數據為列表形式返回TRUE,否則返回FALSE。
用法: is.list(X)
參數:
x:不同類型的數據存儲
範例1:
# R program to illustrate
# is.list function
# Initializing some list
a <- list(1, 2, 3)
b <- list(c("Jan", "Feb", "Mar"))
c <- list(matrix(c(1, 2, 3, 4, 5)))
d <- list(list("green", 12.3))
# Calling is.list() function
is.list(a)
is.list(b)
is.list(c)
is.list(d)
輸出:
[1] TRUE [1] TRUE [1] TRUE [1] TRUE
範例2:
# R program to illustrate
# is.list function
# Initializing a data frame "Biochemical Oxygen
# Data" data sets
x <- BOD
# Each row of the data frame is a list
a <- x[2, ]
# Each column of the data frame is not a list
b <- x[, 1]
# Calling is.list() function
is.list(a)
is.list(b)
輸出:
[1] TRUE [1] FALSE
相關用法
- R語言 as.list()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 is.matrix()用法及代碼示例
- R語言 exists()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 is.integer()用法及代碼示例
- R語言 is.numeric()用法及代碼示例
- R語言 is.complex()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 is.call()用法及代碼示例
- R語言 is.table()用法及代碼示例
- R語言 is.expression()用法及代碼示例
- R語言 is.unsorted()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
- R語言 identity()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 call()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 ncol()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Check if the Object is a List in R Programming – is.list() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。