I'm plotting density graphs using the SM package in R. How do I adjust size of the numbers on the x and y axes? I've copied my code below. This should be a reproducible example if you have the SM package installed:
library(sm)
# sample data
stage <- c(1,2,3)
value <- c(4,5,6)
stage.f <- factor(stage, levels = c(1,2,3), labels = c("Phase 1", "Phase 2", "Phase 3") )
sm.density.compare(value, stage, xlab="value for ASC",
ylab="Density of value among respondents",
h=0.3, lwd=3, lty=c(1,1,1), col=c("red","green","blue"))
title(main="value for ASC for the three phases")
colfill <- c(2:(2+length(levels(stage.f))))
legend("topright", levels(stage.f), fill=colfill)