
LazyColumn S4 class
LazyColumn-class.RdAn S4 class to represent a column vector as a subset of a LazyMatrix-object
Value
An object of class LazyColumn with slots data (numeric vector), scale (numeric scalar), and location (numeric scalar); represents a column of a LazyMatrix (scaled via scale and location).
Slots
dataThe underlying data column vector.
scaleNumeric scalar containing column-scale parameter.
locationNumeric scalar containing the column-location parameter.
Examples
mat <- matrix(1:6, nrow = 2, ncol = 3)
lazy_mat <- LazyMatrix(mat, "sd", "mean")
lazy_column <- lazy_mat[, 2]