Nothing
mycorMatrix <-
function(mycorcoefs,myDATA){
myDATA <- data.frame(myDATA)
index <- myDATA$index
string <- names(mycorcoefs)
substring <- substring(string,1,3)
ar.ord <- length(substring[substring=="Phi"])
ma.ord <- length(substring[substring=="The"])
csARMA <- corARMA(mycorcoefs, form = ~index, p = ar.ord,q=ma.ord);
csARMA <- Initialize(csARMA, data = myDATA);
corMatrix(csARMA);
}
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.