我用ggplot2
绘制图表,我不断收到此消息
Warning message:
Removed 2 rows containing missing values (geom_point).
我希望能够知道哪些是有罪的行。
我的数据是http://pastebin.com/xq0ccdF3
有办法吗?
答案 0 :(得分:0)
您可以使用which(x %in% NA)
之类的内容,其中x
是您传递给ggplot2
的数据。
例如,
x <- c(1,2,NA,4,4,NA)
which(x %in% NA)
返回[1] 3 6
和
which(x %in% 4)
返回[1] 4 5