nmsave_plot
is a wrapper around ggplot2::ggsave()
for nm objects,
nmsave_table
is a wrapper for saving data.frame
s to file in the form of a
.csv file.
nmsave_plot(
r,
object,
file_name,
directory = results_dir(r),
width = 7,
height = 5,
dpi = 300,
...
)
nmsave_table(r, object, file_name, directory = results_dir(r), ...)
An nm object.
A list of plotting objects.
Character. Name of results file.
Character (default = results_dir(r)
). Where to save.
Passed to ggplot2::ggsave()
.
Passed to ggplot2::ggsave()
.
Passed to ggplot2::ggsave()
.
Passed to ggplot2::ggsave()
.
An nm object with modified result_files
field.