| sn_save_ggplot | R Documentation |
Save network as a ggplot2 object to file using ggsave.
sn_save_ggplot(
network,
filename,
width = 7,
height = 7,
dpi = 300,
title = NULL,
...
)
network |
A cograph_network object. |
filename |
Output filename. |
width |
Width in inches. |
height |
Height in inches. |
dpi |
Resolution for raster formats. |
title |
Optional plot title. |
... |
Additional arguments passed to ggsave. |
The output filename, invisibly.
## Not run:
adj <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), nrow = 3)
net <- cograph(adj)
sn_save_ggplot(net, file.path(tempdir(), "network.pdf"))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.