vec.from.range <-
function (range, distribution, number.points)
{
if (missing(distribution) || !is.logdist(distribution)) {
seq(range[1], range[2], length = number.points)
}
else {
logseq(range[1], range[2], length = number.points)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.