I am using the following code to create a standard normal distribution in R:
x<-seq(-4,4,length=200)
y=dnorm(x,mean=0, sd=1)
plot(x,y, type="l", lwd=2)
I need the x axis to be labeled at the mean and at points three standard deviations above and below the mean. How can I add these labels?

axes=FALSEin theplot()command and then see?axis... – Ben Bolker May 7 '12 at 21:27normal.and.t.distin theHHpackage a while ago. – BenBarnes May 7 '12 at 21:36