gpt4 book ai didi

r - 如何只选择正值?

转载 作者:行者123 更新时间:2023-12-04 06:36:25 25 4
gpt4 key购买 nike

我有一个包含正,负以及NA值的数据集。如何使用脚本选择仅正值?我还想用NA替换负数,并保持NA值不变。

最佳答案

您可以使用which函数:

sample <- c(1, 2, -7, NA, NaN)
sample[which(sample > 0)]
[1] 1 2

For negative values assign NA.



使用 which:
sample[which(sample < 0)] <- NA 

关于r - 如何只选择正值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28403062/

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