This help topic is for R version 0.60. For the current version of R, try https://stat.ethz.ch/R-manual/R-patched/library/base/html/load.html
load {base}R Documentation

Reload Saved Datasets

Description

This function will reload the datasets written to a file with the function save.

Usage

load(filename)

Arguments

filename

a character string giving the name of the file to load.

See Also

save.

Examples

# save all data
save(list = ls(), file= "all.Rdata")

# restore the saved values
load("all.Rdata")

[Package base version 0.60 ]