Load and Show Saved Figures

show_figure(name, path = NULL)

Arguments

name

Character string identifying the figure

path

Character string giving the folder path

Value

Prints a saved figure

Examples

## Code show_figure
#> function (name, path = NULL) #> { #> path <- file.path(path, paste0(name, ".png")) #> plot <- knitr::include_graphics(path) #> return(plot) #> } #> <bytecode: 0x55630c0e9f58> #> <environment: namespace:ETSMissing>