ggplot2 label out of the graph in likert scale

前端 未结 3 1716

I have a ggplot made of a likert-scale using the package likert by jason.bryer (see). If you run the code with the original data here, then my extrem label (in the far right) i

3条回答
  •  被撕碎了的回忆
    2021-02-11 06:09

    p <- plot(competence_bachelor_plot,
              centered = FALSE,
              include.histogram = FALSE) + 
      ggtitle("How do you rate your skills gained with the Bachelor's?*") + 
      theme(axis.text.y = element_text(colour = "black"), 
            axis.text.x = element_text(colour = "black"),
            plot.margin = unit(c(2, 2, 2, 2), "cm"))
    

    enter image description here

提交回复
热议问题