as.list()
R语言中的函数用于将对象转换为列表。这些对象可以是向量、矩阵、因子和 DataFrame 。
用法: as.list(object)
参数:
object:向量、矩阵、因子或 DataFrame
范例1:
# R program to convert object to list
# Creating vector
x <- c(1, 2, 3, 4, 5)
# Calling as.list() Function
as.list(x)
输出:
[[1]] [1] 1 [[2]] [1] 2 [[3]] [1] 3 [[4]] [1] 4 [[5]] [1] 5
范例2:
# R program to convert object to list
# Calling pre-defined data set
BOD
# Calling as.list() Function
as.list(BOD)
输出:
Time demand 1 1 8.3 2 2 10.3 3 3 19.0 4 4 16.0 5 5 15.6 6 7 19.8 $Time [1] 1 2 3 4 5 7 $demand [1] 8.3 10.3 19.0 16.0 15.6 19.8 attr(, "reference") [1] "A1.4, p. 270"
相关用法
- R语言 type.convert()用法及代码示例
- R语言 is.list()用法及代码示例
- R语言 as.character()用法及代码示例
- R语言 as.integer()用法及代码示例
- R语言 as.logical()用法及代码示例
- R语言 as.vector()用法及代码示例
- R语言 as.matrix()用法及代码示例
- R语言 toString()用法及代码示例
- R语言 as.table()用法及代码示例
- R语言 sapply()用法及代码示例
- R语言 identity()用法及代码示例
- R语言 which()用法及代码示例
- R语言 call()用法及代码示例
- R语言 cumprod()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 ncol()用法及代码示例
- R语言 is.factor()用法及代码示例
- R语言 nrow()用法及代码示例
- R语言 unique()用法及代码示例
- R语言 max()用法及代码示例
- R语言 min()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Convert an Object to List in R Programming – as.list() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。