Nothing
"norm" <-
function(x)
{
mat <- matrix(,nrow=2,ncol=4)
mat <- data.frame(mat)
names(mat)<- c("Statistic","SE","t-val","p")
row.names(mat) <- c("Skewness","Kurtosis")
sk <- Skew(x)
ku <- Kurt(x)
mat[1,] <- as.numeric(sk)
mat[2,] <- as.numeric(ku)
return(mat)
}
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.