I want to plot something without using theme(), but instead theme_classic(). How can I change the position of the legend to the "bottom"?
Thanks!
I want to plot something without using theme(), but instead theme_classic(). How can I change the position of the legend to the "bottom"?
Thanks!
I also struggled to answer your question; @JonSpring provided valuable code and explanation.
Sample code:
ggplot(diamonds, mapping = aes(x = clarity)) +
geom_bar(aes(fill = cut)) +
labs(x = NULL, y = NULL) +
guides(x = "none", y = "none")+
theme_classic()+
theme(legend.position = 'bottom', legend.direction = "horizontal")
Output: