Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

R 列表


列表

R 中的列表可以在其中包含许多不同的数据类型。列表是数据的集合,它是有序且可变的。

要创建列表,请使用 list() 函数

示例

# 字符串列表
thislist <- list("apple", "banana", "cherry")

# 打印列表
thislist
自己尝试 »

访问列表

您可以通过引用列表项的索引号(在方括号内)来访问列表项。第一个项目的索引为 1,第二个项目的索引为 2,依此类推。

示例

thislist <- list("apple", "banana", "cherry")

thislist[1]
自己尝试 »

更改项目值

要更改特定项目的 value,请引用索引号。

示例

thislist <- list("apple", "banana", "cherry")
thislist[1] <- "blackcurrant"

# 打印更新后的列表
thislist
自己尝试 »

列表长度

要找出列表中有多少个项目,请使用 length() 函数

示例

thislist <- list("apple", "banana", "cherry")

length(thislist)
自己尝试 »


检查项目是否存在

要找出列表中是否存在指定的项目,请使用 %in% 运算符

示例

检查列表中是否存在 "apple"

thislist <- list("apple", "banana", "cherry")

"apple" %in% thislist
自己尝试 »

添加列表项

要将项目添加到列表的末尾,请使用 append() 函数

示例

将 "orange" 添加到列表中

thislist <- list("apple", "banana", "cherry")

append(thislist, "orange")
自己尝试 »

要将项目添加到指定索引的右侧,请在 append() 函数中添加 "after=索引号"

示例

在 "banana" (索引 2)之后将 "orange" 添加到列表中

thislist <- list("apple", "banana", "cherry")

append(thislist, "orange", after = 2)
自己尝试 »

删除列表项

您也可以删除列表项。以下示例创建一个新的更新后的列表,其中没有 "apple" 项目

示例

从列表中删除 "apple"

thislist <- list("apple", "banana", "cherry")

newlist <- thislist[-1]

# 打印新列表
newlist
自己尝试 »

索引范围

您可以通过使用 : 运算符指定开始位置和结束位置来指定索引范围。

示例

返回第二、第三、第四和第五个项目

thislist <- list("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango")

(thislist)[2:5]
自己尝试 »

注意:搜索将从索引 2(包含)开始,在索引 5(包含)结束。

请记住,第一个项目的索引为 1。


遍历列表

您可以使用 for 循环遍历列表项。

示例

逐个打印列表中的所有项目

thislist <- list("apple", "banana", "cherry")

for (x in thislist) {
  print(x)
}
自己尝试 »

}

连接两个列表

在 R 中,有几种方法可以连接或连接两个或多个列表。

示例

最常见的方法是使用 c() 函数,它将两个元素组合在一起
list1 <- list("a", "b", "c")
list2 <- list(1,2,3)

list3 <- c(list1,list2)
自己尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.