save_plots {fcoex} | R Documentation |
Save plots into the directory specified by the directory
argument.
Note: If no directory is specified, it will save to tempdir().
A possible option is setting directory = "./Plots"
This function was modified from the CEMiTool package. Chunks of code were retained "as is"
save_plots(fc, name, force = FALSE, directory = "tempdir()") ## S4 method for signature 'fcoex' save_plots(fc, name, force = FALSE, directory = "tempdir()")
fc |
Object of class |
name |
The name of the file to be saved. |
force |
If the directory exists, execution will not stop. |
directory |
Directory into which the files will be saved. |
A pdf file or files with the desired plot(s)
## Not run: data(fc) save_plots(fc, name = "Example") ## End(Not run)