Subset: Subset a Data Array

View source: R/Subset.R

SubsetR Documentation

Subset a Data Array

Description

This function allows to subset (i.e. slice, take a chunk of) an array, in a similar way as done in the function take() in the package plyr. There are two main inprovements:

The input array can have dimension names, either in names(dim(x)) or in the attribute 'dimensions', and the dimensions to subset along can be specified via the parameter along either with integer indices or either by their name.

There are additional ways to adjust which dimensions are dropped in the resulting array: either to drop all, to drop none, to drop only the ones that have been sliced or to drop only the ones that have not been sliced.

If an array is provided without dimension names, dimension names taken from the parameter dim_names will be added to the array.

Usage

Subset(x, along, indices, drop = FALSE)

Arguments

x

A multidimensional array to be sliced. It can have dimension names either in names(dim(x)) or either in the attribute 'dimensions'.

along

Vector with references to the dimensions to take the subset from: either integers or dimension names.

indices

List of indices to take from each dimension specified in 'along'. If a single dimension is specified in 'along' the indices can be directly provided as a single integer or as a vector.

drop

Whether to drop all the dimensions of length 1 in the resulting array, none, only those that are specified in 'along', or only those that are not specified in 'along'. The possible values are, respectively: 'all' or TRUE, 'none' or FALSE, 'selected', and 'non-selected'.

Examples

subset <- Subset(sampleMap$mod, c('dataset', 'sdate', 'ftime'), 
                list(1, 1, 1), drop = 'selected')
PlotLayout(PlotEquiMap, c('lat', 'lon'), subset, 
          sampleMap$lon, sampleMap$lat, 
          titles = paste('Member', 1:3))


s2dverification documentation built on April 20, 2022, 9:06 a.m.