twocol_edgelist | R Documentation |
Quick build a metanet from two columns table
twocol_edgelist(edgelist)
edgelist |
two columns table (no elements exist in two columns at same time) |
metanet
Other plot:
as.ggig()
,
c_net_plot()
,
input_gephi()
,
netD3plot()
,
olympic_rings_net()
,
plot.ggig()
,
venn_net()
twocol <- data.frame(
"col1" = sample(letters, 30, replace = TRUE),
"col2" = sample(c("A", "B"), 30, replace = TRUE)
)
twocol_net <- twocol_edgelist(twocol)
plot(twocol_net)
c_net_plot(twocol_net, g_layout_polygon(twocol_net))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.