如何在 r 中向列表添加值(附示例)


您可以使用以下语法将单个值添加到 R 中的列表:

 #get length of list called my_list
len <- length(my_list)

#append value of 12 to end of list
my_list[[len+1]] <- 12

并且可以使用以下语法将多个值添加到 R 中的列表中:

 #get length of list called my_list
len <- length(my_list)

#define values to append to list
new <- c(3, 5, 12, 14)

#append values to list
i = 1
while (i <= length(new)) {
    my_list[[i+len]] <- new[i]
    i <- i + 1
}

以下示例展示了如何在实践中使用每个函数。

示例 1:向列表添加单个值

假设我们在 R 中有以下列表:

 #create list
my_list <- list(7, 14, c(1, 2, 3))

#view list
my_list

[[1]]
[1] 7

[[2]]
[1] 14

[[3]]
[1] 1 2 3

我们可以使用以下语法将值 12 添加到列表末尾:

 #get length of list
len <- length(my_list)

#append value to end of list
my_list[[len+1]] <- 12

#view list
my_list

[[1]]
[1] 7

[[2]]
[1] 14

[[3]]
[1] 1 2 3

[[4]]
[1] 12

示例2:向列表添加多个值

假设我们在 R 中有以下列表:

 #create list
my_list <- list(7, 14, c(1, 2, 3))

#view list
my_list

[[1]]
[1] 7

[[2]]
[1] 14

[[3]]
[1] 1 2 3

我们可以使用以下语法将多个值添加到列表末尾:

 #get length of list
len <- length(my_list)

#define values to append to list
new <- c(3, 5, 12, 14)

#append values to list
i = 1
while (i <= length(new)) {
    my_list[[i+len]] <- new[i]
    i <- i + 1
}

#display updated list
my_list

[[1]]
[1] 7

[[2]]
[1] 14

[[3]]
[1] 1 2 3

[[4]]
[1] 3

[[5]]
[1] 5

[[6]]
[1] 12

[[7]]
[1] 14

其他资源

如何在R中向向量添加值
如何在 R 中向数据框添加行

添加评论

您的电子邮箱地址不会被公开。 必填项已用*标注