Nothing
`summary.stockReturns` <-
function(object, ...){
d <- dim(object$R)
cat(d[2],'stocks, observed once per', object$period,'')
cat('between', object$start,'and',object$end,'\n\n')
temp <- data.frame(matrix(apply(object$R, 2, mean),nrow=1))
colnames(temp) <- object$ticker
rownames(temp) <- 'Mean Return'
temp <- format(temp, digits=2)
print(temp)
}
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.