Companion lecture

Home

In this final lesson we will apply tools to visualize and interpret the community structure of our networks.

Because link communities are more appealing for visual analysis (e.g., overlapping communities), we will focus on visualization and interpretation of these clusters, although in principle the same approaches could be applied to the spectral clusters as well.

If you haven’t done so already, please load the R libraries and data from the previous practical session:

# libraries
library(pheatmap)
library(dplyr)
library(reshape2)
library(igraph)
library(linkcomm)
library(kernlab)
# data
GITHUBDIR = "http://scalefreegan.github.io/Teaching/DataIntegration/data/"
load(url(paste(GITHUBDIR, "data.rda", sep = "")))
load(url(paste(GITHUBDIR, "kernel.rda", sep = "")))
load(url(paste(GITHUBDIR, "g_linkcomm.rda", sep = "")))

End

Thanks for participating in the course.

Please take the online course survey to help me make this course better!