Has anyone come across a "Removed XXXX rows containing missing values" in which the value is lower than expected? I have more points out of the range than what the warning is giving me.
I have a large dataset (63000 rows) with more than 7000 values lower than 24, which is my lower y-axis limit but get the message saying it is only ~3000.
I haven't seen any info on it anywhere, so would appreciate if anyone who has had this problem before can tell me why this is happening. Thanks!
Here is now a simpler example provided by @JonSpring in his comment:
ggplot(data.frame(X2 = 1:5, X3 = c(30, 31, 20, 40, 41)), aes(X2, X3)) +
geom_point() +
geom_line() +
scale_y_continuous(limits = c(25, 50))