I was just wondering if there is a way to get rid of axis values, either the x-axis or y-axis respectively, in an r-plot graph.
I know that axes = false will get rid of the entire axis, but I would only like to get rid of the numbering.
axes = false
Remove numbering on x-axis or y-axis:
plot(1:10, xaxt='n') plot(1:10, yaxt='n')
If you want to remove the labels as well:
plot(1:10, xaxt='n', ann=FALSE) plot(1:10, yaxt='n', ann=FALSE)
2.1m questions
2.1m answers
60 comments
57.0k users