Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 500 个 id 的数据存储在 uid 列中;我想分别提取偶数和奇数 id 并将其分别存储在两个不同的数据中。如何在 R 中使用 If-Else 循环来做到这一点?
你不能用 if-else 循环来做。您使用子集,表达式基于 ID 是奇数还是偶数。
odd <- df[df$uid %% 2 == 1, ] even <- df[df$uid %% 2 == 0, ]