标签: r
我有一个数值向量x。如何检查它是否仅包含非负值?
答案 0 :(得分:0)
就这么简单
if (all(x >= 0)){ print("All values are non-negatives!") # Do something else }
希望有帮助。