gpt4 book ai didi

r - 基于列类的列表内的子集数据框

转载 作者:行者123 更新时间:2023-12-04 10:13:38 28 4
gpt4 key购买 nike

我有一个由数据框组成的非常大的列表,列表的每个元素都是一个不同的数据框,其中每一列由不同类型的变量和不同长度的数据框组成。我想对这个列表中的数据框进行子集化,并只保留那些具有“整数”或“数字”类的列,同时保留数据框结构(因此似乎没有“lapply”)。

MRE如下:

 x1 <- c(1,2,3,4)
y1 <- c(letters[1:4])
z1 <- as.integer(c(0, 1, 0, 1))
df1 <- data.frame(x1,y1,z1)
str(df1)

x2 <- c(0, 1, 2, 3,4 )
y2 <- as.integer(c(0, 1, 0, 1, 0))
z2 <- c(letters[1:5])
df2 <- data.frame(x2,y2,z2)
str(df2)

list12 <- list(df1, df2)
str(list12)

#the following have not worked or returned errors:
#list12<- sapply(list12, function (x) subset(x, select = class %in% c('character', 'factor'), drop =FALSE))
#Error in match(x, table, nomatch = 0L) :
# 'match' requires vector arguments

#list12 <- list12[sapply(list12, function(x) subset(x, select x %in% class is.numeric(x) || is.integer(x))]
#unexpected symbol

#list12 <- list12[, sapply(list12, function(x) is.numeric(x) || is.integer(x))]
# incorrect number of dimensions

#list12 <- sapply(list12, function(x) subset(x, select = class is.numeric(x) || is.integer(x))
#unexpected symbol

我的预期结果是 2 个数据框的列表,只有包含整数或数字类的列

最佳答案

另一种选择是使用 Filterlapply

lapply(list12, Filter, f = is.numeric)
# [[1]]
# x1 z1
# 1 1 0
# 2 2 1
# 3 3 0
# 4 4 1
#
# [[2]]
# x2 y2
# 1 0 0
# 2 1 1
# 3 2 0
# 4 3 1
# 5 4 0

关于r - 基于列类的列表内的子集数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30489906/

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