rtapeAsList {rtape} | R Documentation |
Load the whole tape as a list.
Description
Load the whole tape as a list.
Usage
rtapeAsList(fNames)
Arguments
fNames |
Name of the tape file to read; if this argument is a vector of several names, function behaves as reading a single tape made of all those tapes joined in a given order. |
Details
This function reads are the objects from the tape, in the order they were written on it, and returns them as a list.
Value
A list containing all the objects stored on the tape.
Author(s)
Miron B. Kursa M.Kursa@icm.edu.pl
Examples
unlink('tmp.tape')
#Record something on the tape
rtapeAdd('tmp.tape',iris)
rtapeAdd('tmp.tape',sin(1:10))
#Read whole tape to the list, so we could examine it
rtapeAsList('tmp.tape')->stored
print(stored)
unlink('tmp.tape')
[Package rtape version 2.2 Index]