Nothing
z2q <- function(numer, denom, canonicalize = TRUE) {
if (any(denom == 0))
stop("zero denominator")
if (length(numer) != length(denom))
stop("length(numer) != length(denom)")
ans <- paste(numer, denom, sep = "/")
mostattributes(ans) <- attributes(numer)
if (canonicalize)
ans <- q2q(ans)
return(ans)
}
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.