saveRecord {indirect} | R Documentation |
Function to save elicitation record.
saveRecord(
designLink.obj,
conclusion.comments = "This concludes the elicitation record.",
file = ""
)
designLink.obj |
list object initally created by function |
conclusion.comments |
character, comments to conclude session. Beware of
non-ASCII text and special characters, which may affect ability to save or
generate a |
file |
character providing filename. |
an RDS file is created with filename file
. A timestamp is
added to designLink.obj
using Sys.time()
.
## Not run:
X <- matrix(c(1, 1, 0, 1), nrow = 2) # design
Z <- designLink(design = X)
tmp <- tempfile(pattern = "report", fileext =".rds")
saveRecord(Z, file = tmp)
## End(Not run)