I'm trying to fix my Plot(GGplot) in R to remove the overlapping text from the graph since there is a Key on the side that explains it better.
spending_clean %>%
mutate(totalfunding =total_funding_amount/500000000) %>%
group_by(awarding_agency_name) %>%
ggplot(aes(x=awarding_agency_name, y = totalfunding,color=awarding_agency_name))+
geom_boxplot(position = position_dodge(50000000))
My question. How do I get rid of the overlapping text/hide the text?