Useful for generating sequences to be plotted on log scale. This
is really simple - seq is run on from and to after log
transformation, then the exponential is reported.
df <- data.frame(x=seqlog(1,100,100))
df <- transform(df, y=x/(10+x))
if (FALSE) {
library(ggplot2)
## the points are equidistant on the log x scaleggplot(df,aes(x,y))+geom_point()+scale_x_log10()
}