If one tries to facet a plot using columns with name "COL", "ROW", "PANEL", "SCALE_X" or "SCALE_Y", ggplot2 fails with a rather obscure error. ``` r library(ggplot2) mtcars$ROW <- mtcars$cyl ggplot(mtcars, aes(hp, mpg)) + geom_point() + facet_grid(ROW ~ am) #> Error: `scale_id` must not be `NA` ``` <sup>Created on 2020-07-17 by the [reprex package](https://reprex.tidyverse.org) (v0.3.0)</sup>