0

how do I avoid that ggplot cuts off axis labels such as in this example, where the % Symbol isn't shown?

enter image description here

manuel459
  • 173
  • 1
  • 10

1 Answers1

0

Set x=element_blank() in theme()

theme(axis.title.x=element_blank(),
        axis.text.x=element_blank(),
        axis.ticks.x=element_blank())
TarJae
  • 72,363
  • 6
  • 19
  • 66