I'm hoping to justify my x-axis labels so that they all start right along the x-axis rather than being center-justified. Here's my code:
ggplot(data=AllLogs, aes(x=Stand_Type, fill=OccupiedUnoccupied)) +
geom_bar(stat="count", position=position_dodge()) +
theme(axis.text.x = element_text(angle = 90))
Here's what I get.