seqLog | R Documentation |
Generate multiplicative sequences, or series.
seqLog(from, to, base = 10)
from, to |
the starting and (maximal) end value of a sequence. |
base |
multiplication value. |
Starting at from
, seq
multiplies successively by base
until the maximal value is reached. This is useful for generating
tick-spacing on log-transformed axes.
vector from lo to hi with multiplication steps of incr. Used for making ticks to a log-scaled axis
## Not run: #Sequence suitable for log base 10 labels seqLog(1E-5, 1E5) #Sequence suitable for log base 2 labels seqLog(2, 128,base=2) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.