我正在生成一个稀疏向量长度> 50,000。我在 for 循环中生成它。我想知道是否有一种有效的方法来存储零?
基本上代码看起来像
score = c()
for (i in 1:length(someList)) {
score[i] = getScore(input[i], other_inputs)
if (score[i] == numeric(0))
score[i] = 0 ###I would want to do something about the zeros
}
我正在生成一个稀疏向量长度> 50,000。我在 for 循环中生成它。我想知道是否有一种有效的方法来存储零?
基本上代码看起来像
score = c()
for (i in 1:length(someList)) {
score[i] = getScore(input[i], other_inputs)
if (score[i] == numeric(0))
score[i] = 0 ###I would want to do something about the zeros
}