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

Description Usage Arguments Value Examples

Description

[ extracts parts of an object of class DD.

It is indeed the method [ for the class DD. This method returns subsets from an object of class DD specified as an input parameter. The output is an object of the same class DD as the input parameter x.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
## S3 method for class 'DD'

  x[
  i,
  j,
  by,
  keyby,
  with = TRUE,
  nomatch = getOption("datatable.nomatch"),
  mult = "all",
  roll = FALSE,
  rollends = if (roll == "nearest") c(TRUE, TRUE) else if (roll >= 0) c(FALSE, TRUE)
    else c(TRUE, FALSE),
  which = FALSE,
  .SDcols,
  verbose = getOption("datatable.verbose"),
  allow.cartesian = getOption("datatable.allow.cartesian"),
  drop = NULL,
  on = NULL
]

Arguments

x

Object of class DD.

i, j, ...

indices corresponding to elements to be extracted. The indices are numeric or character vectors, missing or NULL. Numeric values are coerced to integer with as.integer (thus truncated to zero).

drop

Included by coherence.

Value

Object of class DD with the subsetted input object.

Examples

1
2
3
4
5
data(ExampleDD)
## Not run: 
ExampleDD[Variable == 'Turnover']

## End(Not run)

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