Le sens du message d'Avertissement: suppression de 4 lignes contenant des valeurs manquantes (geom_path)

De données : https://drive.google.com/file/d/0B20HmmYd0lsFSmZhYUk3bkRTNFk/edit?usp=sharing

plot.df<- read.table("meansses.txt")

theme_luke <- function (base_size = 12, base_family = "") {
theme_gray(base_size = base_size, base_family = base_family) %+replace% 
theme(
  panel.background = element_rect(fill="white"),
  panel.grid.minor.y = element_blank(),
  legend.key = element_rect(fill="white", colour= "white"),
  strip.background = element_rect(fill="white")
)   
}
theme_set(theme_luke())

ggplot(plot.df, aes(factor(L2),mean)) + 
 geom_point(stat = "identity",aes(shape=L3), size=4, group=L3) +
 scale_shape(solid = FALSE) +
 geom_errorbar(aes(ymax = mean + se, ymin = mean - se)) +
 facet_grid(. ~ L1) +
 xlab("Levels") + ylab("Proportion") +
 ylim(0,0.12)

Tout fonctionne bien sauf quand je ylim - je obtenir

Warning message:
Removed 4 rows containing missing values (geom_path) .

Quelqu'un peut-il m'expliquer ce que signifie dans ce contexte?

OriginalL'auteur luke123 | 2014-02-04