TITLE(load @@ Reload Saved Datasets)
USAGE(
load(filename)
)
ALIAS(load)
ARGUMENTS(
ARG(filename @@ a character string giving the name of the file to load.)
)
DESCRIPTION(
This function will reload the datasets written to a file
with the function LANG(save).
)
SEEALSO(
LANG(LINK(save)).
)
EXAMPLES(
# save all data
save(list = ls(), file= "all.Rdata")
BLANK
# restore the saved values
load("all.Rdata")
)
