gpt4 book ai didi

r - 将 data.frame 转换为列表列表列表

转载 作者:行者123 更新时间:2023-12-01 12:13:16 26 4
gpt4 key购买 nike

我正在使用具有不同参数的不同模型。我将它们存储在数据库中很方便。当我拉取它们时,它们以 dataframe 的形式出现,我称之为 df

df 中有几列有助于将每个参数彼此区分开来,因此每一(整个)行最终都是唯一的。

例如

col_1 <- c("model_1", "model_1", "model_1", "model_1", "model_2", "model_2", "model_2", "model_2")
col_2 <- c("category_1", "category_1", "category_2", "category_2", "category_1", "category_1", "category_2", "category_2")
col_3 <- c("type_1", "type_2", "type_1", "type_2", "type_1", "type_2", "type_1", "type_2")
col_4 <- c("name_1", "name_2", "name_3", "name_4", "name_5", "name_6", "name_7", "name_8")
col_5 <- c("value_1", "value_2", "value_3", "value_4", "value_5", "value_6", "value_7", "value_8")
mat <- matrix(c(col_1, col_2, col_3, col_4, col_5), ncol = 5)
df <- data.frame(mat)
names(df) <- c("model", "category", "type", "name", "value")

I would be interested in transforming df into a list of list of list ... - call it deep_list - so that each parameter value could be accessed like

parameter <- deep_list$model_1$category_2$type_2$name_4

and it should give me value_4.

我一直在读这个帖子 Converting a data.frame to a list of lists并尝试充分利用 {plyr} 中的 dlply() 函数作为

not_deep_list <- dlply(df,1,c)

或者还有

not_list <- df %>% group_by(model)

我认为这是一个非常类似的问题(因此具有类似的标题)。

但是它的不同之处在于它需要处理更多的信息“层”(即列),因此 deep_list 名称和标题...

欢迎任何建议(递归、循环、矢量化解决方案、我从未听说过的包中的函数,...)

谢谢!

最佳答案

首先,我在您的 data.frame 中指定了 stringsAsFactors=FALSE - 这很重要,因为我使用 split(...) 来识别 因素而不是因素值。要明白我的意思,运行

vec <- factor(c("apple"), levels=c("apple","banana"))
split(vec, vec)

# $apple
# [1] apple
# Levels: apple banana
# $banana
# factor(0)
# Levels: apple banana

好的 - 所以将字符串指定为非因素

df <- data.frame(mat, stringsAsFactors=FALSE)

试试这个自定义函数 - 它是递归的,如果 length(split(..., ...)) > 1) - 即如果 split(. ..) 的 data.frame 列导致 > 1 组,该函数将调用自身作为新参数 i[,-1]

recursive_split <- function(L) {
L1 <- split(L, L[,1])
if (length(L1) == 1) {
L2 <- lapply(L1, function(i) i[,-1])
return(L2)
} else {
lapply(L1, function(i) recursive_split(i[,-1]))
}
}

deep_list <- recursive_split(df)

# $model_1
# $model_1$category_1
# $model_1$category_1$type_1
# $model_1$category_1$type_1$name_1
# [1] "value_1"

# $model_1$category_1$type_2
# $model_1$category_1$type_2$name_2
# [1] "value_2"

# $model_1$category_2
# $model_1$category_2$type_1
# $model_1$category_2$type_1$name_3
# [1] "value_3"
# etc

deep_list$model_1$category_2$type_2$name_4
# [1] "value_4"

关于r - 将 data.frame 转换为列表列表列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50260171/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com