Export a graph to a variety of image formats such as PNG, PDF, SVG, and PostScript.
export_graph(
graph,
file_name = NULL,
file_type = NULL,
title = NULL,
width = NULL,
height = NULL
)A graph object of class dgr_graph.
The name of the exported file (including it's extension).
The type of file to be exported. Options for graph files
are: png, pdf, svg, and ps.
An optional title for the output graph.
Output width in pixels or NULL for default. Only useful for
export to image file formats png, pdf, svg, and ps.
Output height in pixels or NULL for default. Only useful for
export to image file formats png, pdf, svg, and ps.
Other Display and Save:
render_graph(),
render_graph_from_graph_series(),
save_graph()
# Create a simple graph
graph <-
create_graph() %>%
add_path(
n = 5,
edge_aes = edge_aes(
arrowhead = c(
"normal", "vee",
"tee", "dot"
),
color = c(
"red", "blue",
"orange", "purple"
)
)
)
# Create a PDF file for
# the graph (`graph.pdf`)
# graph %>%
# export_graph(
# file_name = "graph.pdf",
# title = "Simple Graph"
# )
# Create a PNG file for
# the graph (`mypng.png`)
# graph %>%
# export_graph(
# file_name = "mypng.png",
# file_type = "PNG"
# )