ResidualMatrix-class: The ResidualMatrix class

ResidualMatrix-classR Documentation

The ResidualMatrix class

Description

The ResidualMatrix class supports delayed calculation of the residuals from a linear model fit. This serves as a light-weight representation of what would otherwise be a large dense matrix in memory. It also enables efficient matrix multiplication based on features of the the original matrix (e.g., sparsity).

Construction

ResidualMatrix(x, design=NULL, keep=NULL) returns a ResidualMatrix object, given:

  • x, a matrix-like object. This can alternatively be a ResidualMatrixSeed, in which case design and keep are ignored.

  • design, a numeric matrix containing the experimental design, to be used for linear model fitting on each column of x. This defaults to an intercept-only matrix.

  • keep, an integer vector specifying the columns of design to not regress out. By default, all columns of design are regressed out.

  • restrict, an integer or logical vector specifying the rows of x to use for model fitting. If NULL, all rows of x are used.

When keep=NULL, the ResidualMatrix contains values equivalent to lm.fit(x=design, y=x)$residuals.

Methods

In the following code chunks, x is a ResidualMatrix object:

  • x[i, j, .., drop=FALSE] will return a ResidualMatrix object for the specified row and column subsets, or a numeric vector if either i or j are of length 1.

  • t(x) will return a ResidualMatrix object with transposed contents.

  • dimnames(x) <- value will return a ResidualMatrix object where the rows and columns are renamed by value, a list of two character vectors (or NULL).

colSums(x), colMeans(x), rowSums(x) and rowMeans(x) will return the relevant statistics for a ResidualMatrix x.

%*%, crossprod and tcrossprod can also be applied where one or both of the arguments are ResidualMatrix objects.

ResidualMatrix objects are derived from DelayedMatrix objects and support all of valid operations on the latter. All operations not listed here will use the underlying DelayedArray machinery. Unary or binary operations will generally create a new DelayedMatrix instance containing a ResidualMatrixSeed.

Author(s)

Aaron Lun

Examples

design <- model.matrix(~gl(5, 50))

library(Matrix)
y0 <- rsparsematrix(nrow(design), 200, 0.1)
y <- ResidualMatrix(y0, design)
y

# For comparison:
fit <- lm.fit(x=design, y=as.matrix(y0))
DelayedArray(fit$residuals)

# Keeping some of the factors:
y2 <- ResidualMatrix(y0, design, keep=1:2)
y2
DelayedArray(fit$residuals + design[,1:2] %*% fit$coefficients[1:2,])

# Matrix multiplication:
crossprod(y)
tcrossprod(y)
y %*% rnorm(200)


LTLA/ResidualMatrix documentation built on Aug. 16, 2022, 10:40 a.m.