我想删除数据框中超过50%NA
s的所有列或行。
这是我的解决方案:
# delete columns with more than 50% missings
miss <- c()
for(i in 1:ncol(data)) {
if(length(which(is.na(data[,i]))) > 0.5*nrow(data)) miss <- append(miss,i)
}
data2 <- data[,-miss]
# delete rows with more than 50% percent missing
miss2 <- c()
for(i in 1:nrow(data)) {
if(length(which(is.na(data[i,]))) > 0.5*ncol(data)) miss2 <- append(miss2,i)
}
data <- data[-miss,]
但我正在寻找更好/更快的解决方案。
我也很感谢dplyr
解决方案
答案 0 :(得分:29)
要删除包含一定数量NA的列,您可以使用colMeans(is.na(...))
## Some sample data
set.seed(0)
dat <- matrix(1:100, 10, 10)
dat[sample(1:100, 50)] <- NA
dat <- data.frame(dat)
## Remove columns with more than 50% NA
dat[, -which(colMeans(is.na(dat)) > 0.5)]
对于行类似,使用rowMeans
。
答案 1 :(得分:1)
这是另一个提示 ro filter df 列中有 50 个 NaN:
## Remove columns with more than 50% NA
rawdf.prep1 = rawdf[, sapply(rawdf, function(x) sum(is.na(x)))/nrow(rawdf)*100 <= 50]
这将导致列中只有 NaN 的 df 不大于 50%。
答案 2 :(得分:0)
一种tidyverse
解决方案,可在此处删除x%为NA
s(50%)的列:
test_data <- data.frame(A=c(rep(NA,12),
520,233,522),
B = c(rep(10,12),
520,233,522))
# Remove all with %NA >= 50
# can just use >50
test_data %>%
purrr::discard(~sum(is.na(.x))/length(.x)* 100 >=50)
结果:
B
1 10
2 10
3 10
4 10
5 10
6 10
7 10
8 10
9 10
10 10
11 10
12 10
13 520
14 233
15 522
答案 3 :(得分:0)
dplyr 解决方案
对于基于逻辑条件的select
列,我们可以使用选择助手where()
,如下所示:
library(dplyr)
threshold<-0.5 #for a 50% cut-off
df %>% select(where(~mean(is.na(.))< threshold))
对于 filter
行,dplyr
的 if_any()
和 if_all()
将处理 100 或 0% 截止的情况,如 df %>% filter(if_any(everything(), ~is.na(.x)))
。
对于具有其他阈值的解决方案,您可以使用 rowMeans
:
library(dplyr)
df %>% filter(rowMeans(is.na(.)) < threshold)