Nothing
## File Name: print_object_summary.R
## File Version: 0.161
print_object_summary <- function( obji, digits)
{
V <- ncol(obji)
for (vv in 1L:V){
if ( is.numeric( obji[,vv] ) ){
obji[,vv] <- round( obji[,vv], digits=digits )
}
}
print( format(obji, scientific=FALSE), digits=digits )
}
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.