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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。