Change Axis Label - R scatterplot
问题 I am using the CAR library scatterplot function trying to do something similar to R: Replace X-axis with own values. However the result is badly formatted. Does anyone know how to replace the x axis values when using scatterplot? My code is below library(car) dat = data.frame(x=1:10, y=1:10) scatterplot(y~x, data=dat, xlab="X axis", ylab="Y Axis", xaxt="n") axis(1, at=seq(1,10,2), labels=letters[1:5]) With the resulting image 回答1: Reading the car:::scatterplot help page, as it seems is my