jsd | R Documentation |
Computes the Jensen-Shannon Distance between two networks
jsd(network1, network2, method = c("kld", "spectral"), signed = TRUE)
network1 |
Matrix or data frame. Network to be compared |
network2 |
Matrix or data frame. Second network to be compared |
method |
Character (length = 1).
Method to compute Jensen-Shannon Distance.
Defaults to
|
signed |
Boolean. (length = 1).
Should networks be remain signed?
Defaults to |
Returns Jensen-Shannon Distance
Hudson Golino <hfg9s at virginia.edu> & Alexander P. Christensen <alexander.christensen at Vanderbilt.Edu>
# Obtain wmt2 data
wmt <- wmt2[,7:24]
# Set seed (for reproducibility)
set.seed(1234)
# Split data
split1 <- sample(
1:nrow(wmt), floor(nrow(wmt) / 2)
)
split2 <- setdiff(1:nrow(wmt), split1)
# Obtain split data
data1 <- wmt[split1,]
data2 <- wmt[split2,]
# Perform EBICglasso
glas1 <- EBICglasso.qgraph(data1)
glas2 <- EBICglasso.qgraph(data2)
# Spectral JSD
jsd(glas1, glas2)
# 0.1595893
# Spectral JSS (similarity)
1 - jsd(glas1, glas2)
# 0.8404107
# Jensen-Shannon Divergence
jsd(glas1, glas2, method = "kld")
# 0.1393621
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.