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).

Logs
  • 14:58, 5 March 2024 WikiSysop talk contribs created page IgraphIntro Answers v1 (Created page with "= Aswers: " Cytoscape and network intro exercise" = '''Answers by:''' Lars Rønn Olsen and Rasmus Wernersson = Item #1: Loading network as an igraph object = <pre style="overflow:auto;"> library(igraph) df <- data.frame(from = c("alpha", "alpha", "beta"), to = c("alpha", "beta", "beta")) g <- graph_from_data_frame(df, directed = FALSE) </pre> = Item #2: Node attributes and visualization = <pre style="overflow:auto;"> poldelta_graph <- data.frame(from = c("DPOD1_HUMAN"...")