标签: r dataframe missing-data
我有一个数据框,在特定列中我想找到所有 NA 值的索引。我该怎么办?
答案 0 :(得分:10)
which(is.na(my.df$col.I.care.about))