This function is intended to quickly show an overview of your network data. While it returns a ggraph object that layers etc can be added to it is limited in use and should not be used as a foundation for more complicated plots. It allows colour, labeling and sizing of nodes and edges, and the exact combination of layout and layers will depend on these as well as the features of the network. The output of this function may be fine-tuned at any release and should not be considered stable. If a plot should be reproducible it should be created manually.
node_colour, edge_colour: Colour mapping for nodes and edges
node_size, edge_width: Size/width mapping for nodes and edges
node_label, edge_label: Label mapping for nodes and edges
Examples
library(tidygraph)gr <- create_notable('herschel')%>% mutate(class = sample(letters[1:3], n(),TRUE))%E>% mutate(weight = runif(n()))# Standard graphautograph(gr)# Adding node labels will cap edgesautograph(gr, node_label = class)# Use tidygraph calls for mappingautograph(gr, node_size = centrality_pagerank())# Trees are plotted as dendrogramsiris_tree <- hclust(dist(iris[1:4], method ='euclidean'), method ='ward.D2')autograph(iris_tree)