Spacing the axis labels in shiny R

Hi,
I have built a shiny app. Our team is monitoring a group of 110 people who are conducting field surveys. The bar graph in the attached image below shows the average duration of surveys taken by the enumerators. But the axis labels are quite congested. I want the labels to be adequately spaced. How can I do it? The code is shown below:

output$plot7<-renderPlotly({
    req(en_wise_duration())
    en_wise_dur<-ggplot(en_wise_duration(),aes(reorder(en_name,duration_en),duration_en))+
      geom_bar(mapping = aes(fill=en_name),width = 0.5,stat = "identity",show.legend = F)+
      theme_minimal()+
      labs(title = "Enumerator-wise Duration of surveys",
           x="Name of Enumerator",
           y="Average Duration (in minutes)")+
      coord_flip()+
      theme(plot.title = element_text(face="bold",hjust=0.5,size=20),
            text = element_text(family="a"),
            axis.title = element_text(face = "bold",size=15),
            axis.text = element_text(size = 6))

What is the purpose of the chart ? i.e. how would it be useful to your users ?
It seems like too much info, and hard to read in general.
If you want to know who is the quickest and who is the slowest ; then do a chart for top 10 and a chart for bottom 10, and forget the middle....

The purpose is to give feedback to the surveyors. Yeah the bottom 10 option is a nice one. It just slipped my mind. Thanks for that suggestion.

Oh thanks for the help. I will try that out.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.