Nothing
fitplotsize <-
function(plotsize, CV)
{
if (length(plotsize) != length(CV))
stop ("incompatible dimensions!")
ini <- lm(log(CV) ~ log(plotsize))$coef
fit <- nls(CV ~ a * plotsize^(-b),
start = list(a = ini[1], b = ini[2]))
fit
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.