lseq | R Documentation |
Generates a logarithmically spaced sequence
lseq(from, to, length.out)
from |
starting value |
to |
ending value |
length.out |
number of intervening values |
lseq()
is just a wrapper for
exp(seq(log(from), log(to), length.out = length.out))
logarithmically spaced sequence
Ben Bolker
seq
lseq(10,1000,9)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.