Nothing
"find.init" <-
function(z, width = 1) {
len <- length(z)
init <- rep(0,len)
for(i in 1:len) {
test.z <- z[i]
train.z <- z[-i]
med.z <- median(train.z)
sigmasq <- sum((train.z-med.z)^2)/(len-1)
dr <- abs(test.z - med.z)
dthe <- width * sqrt(sigmasq)
init[i] <- as.numeric(dr > dthe)
}
return(init)
}
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.