fit.LTR: Fit a linear-transformation of replicates model

Description Usage Arguments Details Value Author(s) References Examples

Description

Fit probe-wise linear models using replicate samples on two different platforms or batches and return the fit in a format suitable for application to smoothing other data.

Usage

1
fit.LTR(dataset1, dataset2);

Arguments

dataset1

A matrix with samples as columns and probes as rows corresponding to the space we want to map expression values *out of*

dataset2

A matrix with samples as columns and probes as rows corresponding to the space we want to map expression values *into*

Details

dataset1 and dataset2 must have the same number of rows and columns, and must be identically ordered. Some gentle checking on the equivalence of rownames is done, but users must do proper assessment themselves. The model fitted is, for each probe Expression(dataset2) = intercept + slope x Expression(dataset1). Thus we are learning a transform from the space of dataset1 into the space of dataset2.

Value

Returns a list with components: rownames vector, length nrow(dataset1), taken from dataset1 and components intercepts vector, length nrow(dataset1), taken from the LTR fit slopes vector, length nrow(dataset1), taken from the LTR fit r.squared vector, length nrow(dataset1), taken from the LTR fit residuals matrix nrow(dataset1) x ncol(dataset1) that gives for each gene/sample tuple in dataset2 the residual of the fit

Author(s)

Paul C. Boutros

References

This would be the LTR paper if/when it gets published

Examples

1
2
3
x <- matrix(nrow = 100, ncol = 10, data = rnorm(1000));
y <- matrix(nrow = 100, ncol = 10, data = rnorm(1000));
model.fit <- fit.LTR(x, y);

LTR documentation built on May 1, 2019, 6:35 p.m.

Related to fit.LTR in LTR...