When plotting with ggplot2
, the axes labels are on the left and bottom. Is it possible to change the x axis to be on top of the plot instead?
ggplot(mtcars, aes(wt, mpg)) + geom_point()
I really thought there would be some theme(axis.position = "top")
option but couldn't find it