Created
October 23, 2017 19:46
-
-
Save jfaganUK/1e494bec4a39858ba0abe51fc0f79251 to your computer and use it in GitHub Desktop.
Lists of iGraph Networks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(dplyr) | |
library(igraph) | |
clean_graph <- function(teamID, el) { | |
e <- el %>% filter(id == teamID) %>% | |
select(source, target) | |
g <- graph_from_data_frame(e) %>% | |
as.undirected(mode = 'collapse', edge.attr.comb = 'max') %>% | |
simplify | |
return(g) | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment