Nothing
#' @export printCount
printCount <-
function (i, first = 1, prev = i - 1, last = NULL)
{
out = ""
disp = round(i)
if (prev >= first)
prev.disp = round(prev)
else prev.disp = ""
if (disp > prev.disp) {
nc = nchar(prev.disp)
if (i != first) {
out = paste(out, paste(rep("\b", nc), collapse = ""),
sep = "")
}
out = paste(out, disp, sep = "")
}
if (!is.null(last) && i == last)
out = paste(out, "\n", sep = "")
cat(out)
return(NULL)
}
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.