
Lawrence F. answered 06/01/19
PhD candidate and researcher with experience using R
You can modify the text for axis text using theme() and the x.axis.text argument. For example:
ggplot(data, aes(x, y)) +
geom_point() +
theme(x.axis.text = element_text(size = 12, angle = 90))
element_text() allows you to change several features of the text including size, orientation, color, and face.
You can do the same for the y-axis using "y.axis.text".