从数据集中删除记录?
我想知道如何从数据集中删除定义它们的列中具有超过 5 个空值的记录。我认为我可以使用以下代码实现此目的,但我没有得到我应该得到的结果获得:
cols_borrar <- which(colMeans(is.na(df)) >5)
你有什么想法吗?
谢谢
I would like to know how I can remove from a dataset the records that have more than 5 null values in the columns that define them.I have thought that I can achieve this with the following code but I am not getting the result I should be getting:
cols_borrar <- which(colMeans(is.na(df)) >5)
Do you have any idea?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你很接近了!使用 colSums() 代替
You're close! Use colSums() instead