Load and Show Saved Figures
show_figure(name, path = NULL)
name | Character string identifying the figure |
---|---|
path | Character string giving the folder path |
Prints a saved figure
## 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>