R 语言中的 unlist() 函数用于将列表转换为向量。它通过保留所有组件简化了生成向量的过程。
用法: unlist(list)
参数:
list:它是一个列表或向量
使用名称:保留或不保留职位名称的布尔值
示例 1:将列表数值向量转换为单个向量
# R program to illustrate
# converting list to vector
# Creating a list.
my_list <- list(l1 = c(1, 3, 5, 7),
l2 = c(1, 2, 3),
l3 = c(1, 1, 10, 5, 8, 65, 90))
# Apply unlist R function
print(unlist(my_list))
输出:
l11 l12 l13 l14 l21 l22 l23 l31 l32 l33 l34 l35 l36 l37 1 3 5 7 1 2 3 1 1 10 5 8 65 90
在上面的代码中,我们使用 unlisted my_listunlist()
并将其转换为单个向量。
如上图所示,列表将消失,每个元素都将位于如上所示的同一行中。
示例 2:使用 DataFrame 取消列出列表:
# R program to illustrate
# Unlisting list with data frame
# Creating a list.
my_list <- list(l1 = c(1, 3, 5, 7),
l2 = c(1, 2, 3),
l3 = c(1, 1, 10, 5, 8, 65, 90))
# Create modified list
my_list_2 <- my_list
# Add a data frame to the list
my_list_2[[4]] <- data.frame(x1 = c(1, 2, 3),
x2 = c(4, 5, 6))
# Unlist list with data.frame
print(unlist(my_list_2, use.names = FALSE))
输出:
[1] 1 3 5 7 1 2 3 1 1 10 5 8 65 90 1 2 3 4 5 6
在上面的代码中,我们修改了之前的列表并向 “my_list_2” 添加了新元素并使用了函数unlist()
在上面。
此外,我们将 “use.name” 参数设置为 “FALSE”,因此我们不会看到向量中值的位置名称。
相关用法
- R语言 toString()用法及代码示例
- R语言 topo.colors()用法及代码示例
- R语言 cm.colors()用法及代码示例
- R语言 terrain.colors()用法及代码示例
- R语言 as.vector()用法及代码示例
- R语言 is.vector()用法及代码示例
- R语言 beep()用法及代码示例
- R语言 transform()用法及代码示例
- R语言 trimws()用法及代码示例
- R语言 round()用法及代码示例
- R语言 sqrt()用法及代码示例
- R语言 prod()用法及代码示例
注:本文由纯净天空筛选整理自akhilsharma870大神的英文原创作品 Converting a List to Vector in R Language – unlist() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。