下面的代码显示readFile
会自动删除第二个观察值,但仍保持y轴的范围从1到1000.如何在不自行编码范围的情况下使ggplot2
适当缩放?
ggplot2
答案 0 :(得分:1)
如何在绘图前删除x中缺少值的行?
library(dplyr)
df %>%
filter(!is.na(x)) %>%
ggplot() +
geom_point(aes(x, y))
或使用na.omit
df %>%
na.omit() %>%
ggplot() +
geom_point(aes(x, y))