ƒac*_*u.- 17
您可以通过自动缩写标签来调整x轴的位数
p + scale_x_discrete(labels = abbreviate)
Run Code Online (Sandbox Code Playgroud)
或者您可以自己提供缩写标签
p + scale_x_discrete(labels = c("Congenital Rubella" = "C. Rub.", ..., "Total tetanus" = "T. tet.", "Yellow fever" = "Y. fever")
Run Code Online (Sandbox Code Playgroud)
请参阅:http://docs.ggplot2.org/current/scale_discrete.html