--- With version 3.2.0 qplot, with histogram or density geometries, uses the character `NULL` as the y label. Previous versions showed nothing. Update: The difference in behavior seems to be due to the argument `.ignore_empty="all"` in the call to `enquos`. ```r set.seed(2009) x <- rnorm(100) qplot(x, geom="histogram") ``` 