In ggplot2 how can I stop axis labels being abbreviated - e.g. 1e+00, 1e+01 along the x axis once plotted? Ideally, I want to force R to display the actual valu
1e+00, 1e+01
Did you try something like :
options(scipen=10000)
before plotting ?