vote up 2 vote down star
2

I've a problem concerning construction of log y-axis in a graphic. How can I manage that the units/numbers of my log y-axis aren't shown in 1e+03, 1e+04, 1e+05 etc...., but only in regluar arabic numbers (1000, 10000, 100000)? Thanks.

flag

2 Answers

vote up 5 vote down

You need to remove the axis (by setting yaxt = "n") and then re-format it properly:

plot((1:100)^3, log = "y", yaxt = "n")
axis(2, format(c(1,10,100)^3, scientific=FALSE))

This was asked before on R-help.

link|flag
1  
I suggest using axis(2, format(axTicks(2,log=TRUE), scientific=FALSE)) in the second line. Then it's less "human depend". – Marek Sep 28 at 8:40
vote up 2 vote down

Additionally, if you just don't like the look of 1e+03 scientific notation, the sfsmisc package has the axTxpr() function to format axis labels in a * 10^k notation.

library(sfsmisc)
example(axTxpr)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.