Nothing
FPE.trace<-function(res, p = 2)
{
d = length(res[1,])
n = length(res[,1])
if(d == 1)
{
out = (p*d+n)/(n-p*d)*var(res)
}
else
{
out = (p*d+n)/(n-p*d)*sum(diag(cov(res)))
}
return(out)
}
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.