Nothing
harary <- function(G){
if(nrow(distances(G)) == 0){har = NA}
if(nrow(distances(G)) > 0){
inv.dist <- 1/distances(G, mode = "in")
har <- 0.5 * sum(ifelse(inv.dist==Inf, 0, inv.dist))}
har
}
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.