When `coord_cartesian()` is called a zero-range `xlim` and `expand=FALSE`, the x value appears to be treated as a factor, and all points are in the plot. ```R ggplot(mtcars, aes(wt, mpg)) + geom_point() + coord_cartesian(xlim = c(5, 5), expand = FALSE) ``` 