All public logs
Jump to navigation
Jump to search
Combined display of all available logs of 22140. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:06, 5 March 2024 WikiSysop talk contribs created page Ex handouts igraph solution (Created page with "= Part 1 - network from AP/MS data = Interaction data from exercise 5 and edge scores from exercise 6 <pre style="overflow:auto;"> library(igraph) library(ggraph) ex5_interactions <- data.frame(from = c("A", "B", "B", "B", "B", "B", "D", "D", "E", "F", "F"), to = c("B", "C", "D", "E", "F", "H", "F", "G", "H", "G", "H"), score = c(-0.155, -0.234, -0.222, -0.183, -0.183, -0.183, -0.301, -0.194, -0.301, -0.301, -0.301)) g <- graph_from_data_frame(ex5_interactions, d...")