我正在使用tidygraph和ggraph来绘制网络。有没有一种方法可以选择性地操作节点?具体地说,分别是大小和颜色。
# example data
rstat_nodes <- data.frame(name = c("Hadley", "David", "Romain", "Julia"))
rstat_edges <- data.frame(from = c(1, 1, 1, 2, 3, 3, 4, 4, 4),
to = c(2, 3, 4, 1, 1, 2, 1, 2, 3))
gr <- tbl_graph(nodes = rstat_nodes, edges = rstat_edges)
as_tbl_graph(gr) %>%
mutate(centrality = centrality_degree(normalized = T)) %>%
ggraph(layout = 'auto') +
#geom_edge_link() +
geom_edge_arc(curvature=0.2,alpha=0.5) +
geom_node_point(aes(size = 0.2, colour = centrality)) +
scale_color_viridis(guide = 'legend') +
ggtitle("Network Degree Centrality (Normalized)") +
theme_graph()发布于 2019-05-12 06:01:55
可以,您可以使用tidygraph包中的activate来访问nodes和edges数据帧。然后,您可以使用dplyr操作每个文件中的数据。您也可以通过管道直接连接到ggraph。
library(tidyverse)
library(igraph)
library(ggraph)
library(tidygraph)
library(graphlayouts)
library(scales)
# example data
rstat_nodes <-
data.frame(name = c("Hadley", "David", "Romain", "Julia"))
rstat_edges <- data.frame(from = c(1, 1, 1, 2, 3, 3, 4, 4, 4),
to = c(2, 3, 4, 1, 1, 2, 1, 2, 3))
gr <- tbl_graph(nodes = rstat_nodes, edges = rstat_edges)
gr %>%
activate(nodes) %>% # use dplyr on nodes
mutate(David =
case_when(name == 'David' ~ 2, T ~ 0),
David = as.character(David)) %>%
activate(edges) %>% # same on edge list
mutate(David = case_when(from == 2 ~ 1, T ~ 0),
David = as.character(David)) %>%
ggraph(., layout = 'auto')+
geom_edge_link(aes(color = David),
width = 1)+
geom_node_point(aes(color = David),
size = 5)+
geom_node_text(aes(label = name),
nudge_x = .05,
nudge_y = .05)

https://stackoverflow.com/questions/55995393
复制相似问题