rray: Build a rray object

Description Usage Arguments Details Value Examples

View source: R/rray.R

Description

Constructor for building rray objects. Existing vectors, matrices, and arrays can be used to build the rray, but their dimension names are not retained.

Usage

1
rray(x = numeric(0), dim = NULL, dim_names = NULL)

Arguments

x

A numeric vector, matrix, or array to convert to an rray.

dim

An integer vector describing the dimensions of the rray. If NULL, the dimensions are taken from the existing object using rray_dim().

dim_names

A list. For no names, NULL, in which case a list of empty characters will be constructed. Otherwise the list must be the same length as the total number of dimensions (i.e length(c(size, shape))). Each element of the list much be either a character vector the same size as the corresponding dimension, or character(0) for no names for that dimension.

Details

The dim argument is very flexible.

This allows quick construction of a wide variety of structures. See the example section for more.

rray objects are never reduced to vectors when subsetting using [ (i.e. dimensions are never dropped).

Value

An rray.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 1D rray. Looks like a vector
# functions similar to a 1 column matrix
rray(c(1,2,3), dim = c(3))

# 3 rows, 4 cols
rray(c(1,2,3), dim = c(3, 4))

# 3x2x4 array
rray(1, dim = c(3, 2, 4))

# from a matrix
mat <- matrix(c(1, 2, 3, 4), ncol = 2)
rray(mat)

# from a matrix, with broadcasting
rray(mat, dim = c(2, 2, 3))

# reshape that matrix during creation
# (different from broadcasting)
rray(mat, dim = c(1, 4))

# from an array, with broadcasting
arr <- array(1, c(1, 2, 2))
rray(arr, c(3, 2, 2))

# with row names
rray(c(1, 2, 3), c(3, 2), dim_names = list(c("x", "y", "z"), NULL))

DavisVaughan/rray documentation built on Feb. 5, 2020, 10:06 p.m.