Nothing
pcit.wrap <- function(data){
m <- cor(data)
net <- PCIT::pcit(m)
signif <- idx(net)
nonsignif <- PCIT::idxInvert(nrow(m), signif)
m.new <- m
m.new[nonsignif] <- 0
diag(m.new) <- 0
m.new <- abs(m.new)
return(m.new)
}
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.