R/export_map.R

Defines functions export_map

Documented in export_map

#' Export process map to pdf, png, ps or svg.
#'
#' @inheritParams export_graph
#' @param map A `process_map` created with [`process_map`][`processmapR::process_map`] and argument `render = F`.
#'
#' @export
#'
export_map <- function(map,
					   file_name = NULL,
					   file_type = NULL,
					   title = NULL,
					   width = NULL,
					   height = NULL) {

	DiagrammeR::export_graph(graph = map,
							 file_name = file_name,
							 file_type = file_type,
							 title = title,
							 width = width,
							 height = height
							 )
}

Try the processmapR package in your browser

Any scripts or data that you put into this service are public.

processmapR documentation built on April 6, 2023, 5:17 p.m.