R语言[ ]用法总结

R语言[ ]用法总结

Summary: 中括号里面使用的函数要么返回行号列号,要么返回布尔值。 例如: 1. 筛选:kkk[which(kkk$Abundance.ppm.&gt=1000),2]&lt-1000 2. 排序:d
Python120