Saves Pmetrics objects
Arguments
- run
The numerical value of the run number of the objects to be saved. This parameter must be specified, as it also determines where to save the revised output.
- ...
Additional objects to be saved, which do not need to be suffixed with the run number, e.g. var1, var2, var3.
- quiet
Suppress written report. Default is
FALSE
.
Details
Any objects that are made during the course of analysis in R can be added to the saved data
that are automatically generated at the end of an NPAG or IT2B run and loaded with PMload
.
Objects with the same run number will be saved as a group. So if a user has made a new object called
lm.1 that contains regressions related to run 1, it will be saved with any other object
that also has .1 at the end.
Additionally, other objects can be saved via the ... argument. For exmaple PMsave(1,lm) will
save any object with .1 at the end, plus an object named "lm". All objects will be suffixed
with the run number when loaded back with PMload
.