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
axes = false
@Richie Cotton has a pretty good answer above. I can only add that this page provides some examples. Try the following:
x <- 1:20 y <- runif(20) plot(x,y,xaxt = "n") axis(side = 1, at = x, labels = FALSE, tck = -0.01)