I'm a beginner with R going over the ggplot2 tutorial and something has caught my eye as being bizarre when using the mtcars dataset.For example, consider the following:>library(ggplot2) >g<-ggplot(mpg, aes(class)) + geom_bar() >g I can't figure out why this works. This clearly ...