gpt4 book ai didi

r - 使用标称变量删除 r 中的异常值

转载 作者:行者123 更新时间:2023-12-02 08:06:58 29 4
gpt4 key购买 nike

比如说,我有三列

x <- c(-10, 1:6, 50)
x1<- c(-20, 1:6, 60)
z<- c(1,2,3,4,5,6,7,8)

检查 x 的异常值

bx <- boxplot(x)
bx$out

检查 x1 的异常值

bx1 <- boxplot(x1)
bx1$out

现在我们必须删除异常值

x <- x[!(x %in% bx$out)]
x

x1 <- x1[!(x1 %in% bx1$out)]
x1

但我们有变量 Z(标称),我们必须删除对应于变量 x 和 x1 的离群值的观测值,在我们的例子中是 1 和 8 obs。 Z的

怎么做?在输出中我们必须有

x   x1  z
Na Na Na
1 1 2
2 2 3
3 3 4
4 4 5
5 5 6
6 6 7
Na Na Na

最佳答案

试试这个解决方案:

x_to_remove<-which(x %in% bx$out)
x <- x[!(x %in% bx$out)]

x1_to_remove<-which(x1 %in% bx1$out)
x1 <- x1[!(x1 %in% bx1$out)]

z<-z[-unique(c(x_to_remove,x1_to_remove))]
z
[1] 2 3 4 5 6 7

在删除 xx1 中的值之前,您必须保存位置(x_to_removex1_to_remove)和而不是用来清理 z

你的输出:

data.frame(cbind(x,x1,z))
x x1 z
1 1 1 2
2 2 2 3
3 3 3 4
4 4 4 5
5 5 5 6
6 6 6 7

关于r - 使用标称变量删除 r 中的异常值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50569314/

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