Usage
# S3 method for class 'rvar'
x[[i, ...]]
# S3 method for class 'rvar'
x[[i, ...]] <- value
# S3 method for class 'rvar'
x[..., drop = FALSE]
# S3 method for class 'rvar'
x[i, ...] <- valueDetails
The rvar slicing operators ([ and [[) attempt to implement the same
semantics as the base array slicing operators. There are some
exceptions; most notably, rvar slicing defaults to drop = FALSE instead
of drop = TRUE.
Extracting or replacing single elements with [[
The [[ operator extracts (or replaces) single elements. It always
returns (or replaces) a scalar (length-1) rvar.
The x[[i,...]] operator can be used as follows:
x[[<numeric>]]for scalar numerici: gives theith element ofx. Ifxis multidimensional (i.e.length(dim(x)) > 1), extra dimensions are ignored when indexing. For example, ifxis a \(6 \times 2\)rvararray, the 7th element,x[[7]], will be the first element of the second column,x[1,2].x[[<numeric rvar>]]for scalar numericrvari: a generalization of indexing wheniis a scalar numeric. Within each draw ofx, selects the element corresponding to the value ofiwithin that same draw.x[[<character>]]for scalar characteri: gives the element ofxwith name equal toi. Unlike with base arrays, does not work with multidimensionalrvars.x[[i_1,i_2,...,i_n]]for scalar numeric or characteri_1,i_2, etc. Must provide exactly the same number of indices as dimensions inx. Selects the element at the corresponding position in thervarby number and/or dimname (as a string).
Extracting or replacing multiple elements with [
The [ operator extracts (or replaces) multiple elements. It always returns
(or replaces) a possibly-multidimensional rvar.
The x[i,...] operator can be used as follows:
x[<logical>]for vector logicali:iis recycled to the same length asx, ignoring multiple dimensions inx, then anrvarvector is returned containing the elements inxwhereiisTRUE.x[<logical rvar>]for scalar logicalrvari: returns anrvarthe same shape asxcontaining only those draws whereiisTRUE.x[<numeric>]for vector numerici: anrvarvector is returned containing theith elements ofx, ignoring dimensions.x[<matrix>]for numeric matrixi, wherencol(i) == length(dim(x)): each row ofishould give the multidimensional index for a single element inx. The result is anrvarvector of lengthnrow(i)containing elements ofxselected by each row ofi.x[i_1,i_2,...,i_n]for vector numeric, character, or logicali_1,i_2, etc. Returns a slice ofxcontaining all elements from the dimensions specified ini_1,i_2, etc. If an argument is left empty, all elements from that dimension are included. Unlike base arrays, trailing dimensions can be omitted entirely and will still be selected; for example, ifxhas three dimensions, bothx[1,,]andx[1,]can be used to create a slice that includes all elements from the last two dimensions. Unlike base arrays,[defaults todrop = FALSE, so results retain the same number of dimensions asx.
Examples
x <- rvar(array(1:24, dim = c(4,2,3)))
dimnames(x) <- list(c("a","b"), c("d","e","f"))
x
#> rvar<4>[2,3] mean ± sd:
#> d e f
#> a 2.5 ± 1.3 10.5 ± 1.3 18.5 ± 1.3
#> b 6.5 ± 1.3 14.5 ± 1.3 22.5 ± 1.3
## Slicing single elements
# x[[<numeric>]]
x[[2]]
#> rvar<4>[1] mean ± sd:
#> [1] 6.5 ± 1.3
# x[[<numeric rvar>]]
# notice the draws of x[1:4]...
draws_of(x[1:4])
#> [,1] [,2] [,3] [,4]
#> 1 1 5 9 13
#> 2 2 6 10 14
#> 3 3 7 11 15
#> 4 4 8 12 16
x[[rvar(c(1,3,4,4))]]
#> rvar<4>[1] mean ± sd:
#> [1] 10 ± 6.9
# ... x[[rvar(c(1,3,4,4))]] creates a mixures of those draws
draws_of(x[[rvar(c(1,3,4,4))]])
#> [,1]
#> 1 1
#> 2 10
#> 3 15
#> 4 16
# x[[i_1,i_2,...]]
x[[2,"e"]]
#> rvar<4>[1] mean ± sd:
#> [1] 14 ± 1.3
## Slicing multiple elements
# x[<logical>]
x[c(TRUE,TRUE,FALSE)]
#> rvar<4>[4] mean ± sd:
#> [1] 2.5 ± 1.3 6.5 ± 1.3 14.5 ± 1.3 18.5 ± 1.3
# x[<logical rvar>]
# select every other draw
x[rvar(c(TRUE,FALSE,TRUE,FALSE))]
#> rvar<2>[2,3] mean ± sd:
#> d e f
#> a 2 ± 1.4 10 ± 1.4 18 ± 1.4
#> b 6 ± 1.4 14 ± 1.4 22 ± 1.4
# x[<numeric>]
x[1:3]
#> rvar<4>[3] mean ± sd:
#> [1] 2.5 ± 1.3 6.5 ± 1.3 10.5 ± 1.3
# x[<matrix>]
x[rbind(
c(1,2),
c(1,3),
c(2,2)
)]
#> rvar<4>[3] mean ± sd:
#> [1] 10 ± 1.3 18 ± 1.3 14 ± 1.3
# x[i_1,i_2,...,i_n]
x[1,]
#> rvar<4>[1,3] mean ± sd:
#> d e f
#> a 2.5 ± 1.3 10.5 ± 1.3 18.5 ± 1.3
x[1,2:3]
#> rvar<4>[1,2] mean ± sd:
#> e f
#> a 10 ± 1.3 18 ± 1.3
x[,2:3]
#> rvar<4>[2,2] mean ± sd:
#> e f
#> a 10 ± 1.3 18 ± 1.3
#> b 14 ± 1.3 22 ± 1.3