这是来自 https://colorbrewer2.org/ 的 ‘OrRd’ 调色板。它最多有九种颜色。
参见
其他调色板: categorical_pal()
, diverging_pal()
, r_pal()
示例
library(igraphdata)
data(karate)
karate <- karate %>%
add_layout_(with_kk()) %>%
set_vertex_attr("size", value = 10)
#> This graph was created by an old(er) igraph version.
#> ℹ Call `igraph::upgrade_graph()` on it to use with the current igraph version.
#> For now we convert it on the fly...
V(karate)$color <- scales::dscale(degree(karate) %>% cut(5), sequential_pal)
plot(karate)