`radfit.data.frame` <-
function(x, ...)
{
## x *must* have rownames
rownames(x) <- rownames(x, do.NULL = TRUE)
out <- apply(x, 1, radfit, ...)
if (length(out) == 1)
out <- out[[1]]
else {
Call <- match.call()
class(out) <- "radfit.frame"
}
out
}
`radfit.matrix` <-
function(x, ...)
{
radfit(as.data.frame(x), ...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.