spatstat (version 1.46-1)

Extract.anylist: Extract or Replace Subset of a List of Things

Description

Extract or replace a subset of a list of things.

Usage

"["(x, i, ...)
"["(x, i) <- value

Arguments

x
An object of class "anylist" representing a list of things.
i
Subset index. Any valid subset index in the usual R sense.
value
Replacement value for the subset.
...
Ignored.

Value

Another object of class "anylist".

Details

These are the methods for extracting and replacing subsets for the class "anylist".

The argument x should be an object of class "anylist" representing a list of things. See anylist.

The method replaces a designated subset of x, and returns an object of class "anylist".

See Also

anylist, plot.anylist, summary.anylist

Examples

Run this code
   x <- anylist(A=runif(10), B=runif(10), C=runif(10))
   x[1] <- list(A=rnorm(10))
 

Run the code above in your browser using DataCamp Workspace