LazyIndex-class | R Documentation |
LazyIndex
class and methods.The LazyIndex
class is designed to carry
mapping indexes for DelayedDataFrame
columns. So that
some operations (e.g., subsetting) on DelayedDataFrame
are delayed until a realization call is incurred. (e.g.,
as.list(), DataFrame(), ...)
LazyIndex
constructor.
the subsetting method for LazyIndex
object.
LazyIndex(listData = list(), index = integer())
## S4 method for signature 'LazyIndex'
cbind(..., deparse.level = 1)
## S4 method for signature 'LazyIndex,ANY,ANY,ANY'
x[i, j, ..., drop = TRUE]
listData |
the list data for all mapping indexes that are used in
corresponding |
index |
the position of mapping indexes in |
... |
|
deparse.level |
See |
x |
|
i |
row subscript for |
j |
column subscript for |
drop |
Logical. Wheter to drop the dimension if any of the dimensions has length 1. Default is TRUE. |
the cbind,LazyIndex
method is defined to bind the
LazyIndexes column-wise when cbind,DelayedDataFrame
function is called.
a LazyIndex
object.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.