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.
我在数据集中有 8 列。部分或全部有 NA。如果任何列有 NA,我想删除所有行。我发现正在发生的是,如果第一列中有 NA 而其他任何列中没有,我的代码将删除行。
rawdata是具有 的数据框NA。 GoodData假设是删除了 NA 的新数据框。
rawdata
NA
GoodData
GoodData <- rawdata[complete.cases(rawdata),]