Nothing
#' @export
#' @importFrom utils head
#' @inheritParams head
head.chunkwise <- function(x, n=6L, ...){
stopifnot(length(n) == 1)
res <- x$first_chunk(x$cmds)
while(nrow(res) < n && !x$is_complete()){
res <- rbind(res, x$next_chunk(x$cmd))
}
utils::head(res, n=n)
}
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.