R 语言 - 列表
在 R 语言中,列表是有序且可变的数据集合,且可以在其中包含许多不同的数据类型。
创建列表
要创建列表,请使用 list()
函数:
# List of strings
thislist <- list("apple", "banana", "cherry")
# Print the list
thislist
访问列表
你可以通过引用括号内的索引号来访问列表项。第一项的索引为 1,第二项的索引为 2,依此类推。
thislist <- list("apple", "banana", "cherry")
thislist[1]
修改列表项
你可以通过索引号更改特定项目的值。
thislist <- list("apple", "banana", "cherry")
thislist[1] <- "blackcurrant"
# Print the updated list
thislist
列表长度
要找出一个列表有多少项,请使用 length()
函数。
thislist <- list("apple", "banana", "cherry")
length(thislist)
检查列表项是否存在
要查明列表中是否存在指定项目,可以使用 %in%
运算符。
例如:检查列表中是否存在 "apple"
thislist <- list("apple", "banana", "cherry")
"apple" %in% thislist