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.
我有来自 NFL 的 boxscore 数据,其中一些数据显然不正确。例如,对于某些游戏,麻袋数是负数,这是不可能的。此列名为SackNumOff。如何将此列中的任何负值更改为零?
SackNumOff
像这样的东西:
dat$columnname[dat$columnname < 0] = 0
将所有负数替换为 0。想法是您可以使用子集[]来提取子集并将值分配给子集。
[]