Learn R Programming

largeList (version 0.3.1)

names<-.largeList: Overload of operator names<-.

Description

Overload of operator names<-.

Usage

# S3 method for largeList
names(x) <- value

Arguments

x
A largeList object created by getList.
value
A character vector.

Details

It behaviours the same as a normal list object.

See Also

largeList

Examples

Run this code
largelist_object <- getList("example.llo", truncate = TRUE)
largelist_object[[]] <- list("A" = 1, "B" = 2, "C" = 3)  ## assign list to the list file
names(largelist_object) <- c("AA", "BB", "CC")

Run the code above in your browser using DataLab