saveRecord {indirect} | R Documentation |
Function to save elicitation record.
Description
Function to save elicitation record.
Usage
saveRecord(
designLink.obj,
conclusion.comments = "This concludes the elicitation record.",
file = ""
)
Arguments
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. |
Value
an RDS file is created with filename file
. A timestamp is
added to designLink.obj
using Sys.time()
.
Examples
## 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)
[Package indirect version 0.2.1 Index]