我是R studio的初学者,所以希望有人可以帮我解决这个问题。 案例:我想制作一个if else循环。我为l
次m
矩阵制作了以下代码:
for (i in 1:l){
for (j in 1:m){
if (is.na(quantilereturns[i,j]) < quantile(quantilereturns[,j], c(.1), na.rm=TRUE)) {
quantilereturns[i,j]
} else { (0) }
}
}
摘要:我想制作一个矩阵,其值小于矩阵quantilereturns
中某个向量的分位数。因此,当它们小于10%分位数时,它们将获得其原始值,否则它将为零。
代码没有给出任何错误,但它也没有改变矩阵中的值。
有人能帮我吗?
答案 0 :(得分:0)
您需要将结果分配给矩阵的单元格。我将以最近的其他线程的矩阵为例:
a <- c(4, -9, 2)
b <- c(-1, 3, -8)
c <- c(5, 2, 6)
d <- c(7, 9, -2)
matrix <- cbind(a,b,c,d)
d <- dim(matrix)
rows <- d[1]
columns <- d[2]
print("Before")
print(matrix)
for (i in 1:rows) {
for (j in 1:columns) {
if (is.na(matrix[i,j]) >= quantile(matrix[,j], c(.1), na.rm=TRUE)) {
matrix[i,j] <- 0
}
}
}
print("After")
print(matrix)
这给出了
[1] "Before"
a b c d
[1,] 4 -1 5 7
[2,] -9 3 2 9
[3,] 2 -8 6 -2
[1] "After"
a b c d
[1,] 0 0 5 0
[2,] 0 0 2 0
[3,] 0 0 6 0
因此,您要寻找的基本路线是matrix[i,j] <- 0