Hi all I have used this code to produce the plot below, someone know How I can switch the subplot, for example sorting them according to title? (25nm....1000nm)?
Ribo_plot <- ggplot(My_table, aes(x= Ribocliques,  group=Status)) + 
  geom_bar(aes(y = ..prop..),fill="seagreen4",alpha =.6, stat="count") +
  geom_text(aes( label = scales::percent(..prop..),
                 y= ..prop.. ), stat= "count", vjust = -.3) +
  labs(y = "Percentage of ribosome in each conformation", fill="Riboclique") +
  facet_grid(~Status) +
  scale_y_continuous(labels = scales::percent)+theme_bw(base_size = 30)
Ribo_plot

 
     
    