Skip to content
Prev 285690 / 398502 Next

R's list data structure

FWIW:

Lists are a fundamental, universal, recursive data structure. All
other data structures (i.e. r.e. sets) can be represented as lists.
Indeed, one of the earliest "high level" (non-machine instructions)
computer languages, McCarthy's LISP = List Processing, is based on
lists. R was designed to be LISP-like (= a functional programming
language) in some fundamentals ways. So it is no surprise that lists
are widely used within R.

Cheers,
Bert
On Fri, Feb 17, 2012 at 12:37 PM, Ajay Askoolum <aa2e72e at yahoo.co.uk> wrote: