sub-sub-.StQList: Extract parts of an object of class StQList

Description Usage Arguments Value Examples

Description

[[ extracts parts of an object of class StQList.

It is indeed the method [[ for the class StQList. This method returns objects of class StQ from the slot Data of the input object x.

Usage

1
2
## S3 method for class 'StQList'
x[[i, j, ..., exact = TRUE]]

Arguments

x

object of class StQList.

i, j, ...

Indices corresponding to the elements to be extracted. These indices are numeric vector or character vector or missing or NULL. Numeric values are coerced internally to integer through as.integer (and thus truncated to zero). Character vector correspond to names of the respective time period of each component object of class StQ.

exact

Included by coherence.

Value

Object of class StQ.

Examples

1
2
3
4
5
6
7
8
9
mm <- c(paste0('0', 1:9), 10:12)
TimePer <- paste0('MM', mm, '2015')
PeriodList <- RepoTime::newRepoTime(TimePer)
EmptyQ <- StQ()
EmptyQList <- vector('list', 12)
EmptyQList <- lapply(EmptyQList, function(x) EmptyQ)
QList <- StQList(Data = EmptyQList, Periods = PeriodList)
QList[['MM092015']]
QList[[2]]

david-salgado/StQ documentation built on Aug. 12, 2021, 3:23 p.m.