R: Directed Graphs vs Undirected Graphs (arguments being ignored, potential warning message)
- 阅读更多 关于 R: Directed Graphs vs Undirected Graphs (arguments being ignored, potential warning message)
问题 I am using the R programming language and the "igraph" library. Suppose I have some data and I make this into a undirected graph and perform community detection (graph clustering) # undirected graph library(igraph) my_data <- data.frame( "node_a" = c("Store_A", "Store_A", "Store_A", "Store_B", "Store_B", "Store_C", "Store_C", "Store_C", "Store_C", "Store_C", "Store_B", "Store_C", "customer_4", "customer_9", "customer_1"), "node_b" = c("customer_1", "customer_2", "customer_3", "customer_3",