This article plays through an exemplar workflow for creating a network of retweets.
We’ll use the example data in the ConnectR
package.
example <- ConnectR::retweet_example
retweet_graph <- example %>%
ConnectR::make_retweet_network(from = OriginalAuthor,
to = sender_handle,
size = followers,
colour = Score)
The default visualisation is interactive. You can:
ConnectR::viz_network(tbl_graph = retweet_graph)
It’s also possible to create a static visualisation of the network in case this is necessary.
ConnectR::viz_network(tbl_graph = retweet_graph,
type = "static",
label_prop = 0.01)