Nothing
"view" <-
function(x, maxlines = 10.)
{
if(NROW(x) <= maxlines) x
else if(is.matrix(x) || is.data.frame(x))
{
cat(NROW(x) - maxlines,"remaining rows have not been listed", fill = TRUE)
x[1:maxlines, ]
}
else if(is.list(x) || is.vector(x))
{
cat(NROW(x) - maxlines,"remaining rows have not been listed", fill = TRUE)
x[1:maxlines]
}
else x
}
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.