I have a very basic question. With the following sample code
x=seq(1,10, length=10)
y=rnorm(10)
plot(y~x, type="l", tck=-0.01,las=1, cex.axis=.90)
I obtain the plot for which the distance between the axis ticks and the corresponding values looks big. I want to reduce that distance so that the values looks close to the ticks without increasing the size of ticks. How can I do this?