I have a graph that has many categorical variables on the x axis, but they are all squished together. Using ggplot2 how can I wrap that text and/or lengthen the graph so it is readable? thanks!
My code:
ggplot(bureau_status_df3, aes(fill=Var1, y=Freq, x=Var2)) + 
  geom_bar(position='fill', stat='identity') + scale_fill_hue(h = c(100, 420))+
    ggtitle("Status by Violation Bureau") + 
 theme_minimal()

 
    