I want to plot 180 points on the x-axis with the corrisponding y-values. But 180 points on the x-axis makes the plot/screen way too crowded. So i want to tell R only to label every 10th (out of my x-vector) on the x-axis. Anyone has an idea how to do it?
Code example:
y <- c(101:280)
x <- c(1:180)
plot (x, y)
Now on the x-axis is every of the 180 points labeled. I want every point in the plot, but only every tenth as written on the x-axis. Hope you know what i am trying to say ;-)