solve.Pearson: Run the Pearson Solver

Description Usage Arguments Value See Also Examples

Description

Given a PearsonSolver object, use the cor function to estimate coefficients for each transcription factor as a predictor of the target gene's expression level.

Usage

1
2
## S4 method for signature 'PearsonSolver'
run(obj)

Arguments

obj

An object of class PearsonSolver

Value

The set of Pearson Correlation Coefficients between each transcription factor and the target gene.

See Also

cor, PearsonSolver

Other solver methods: run,BayesSpikeSolver-method, run,EnsembleSolver-method, run,LassoPVSolver-method, run,LassoSolver-method, run,RandomForestSolver-method, run,RidgeSolver-method, run,SpearmanSolver-method, run,XGBoostSolver-method

Examples

1
2
3
4
5
6
# Load included Alzheimer's data, create a TReNA object with Bayes Spike as solver, and solve
load(system.file(package="trena", "extdata/ampAD.154genes.mef2cTFs.278samples.RData"))
target.gene <- "MEF2C"
tfs <- setdiff(rownames(mtx.sub), target.gene)
pearson.solver <- PearsonSolver(mtx.sub, target.gene, tfs)
tbl <- run(pearson.solver)

trena documentation built on Nov. 15, 2020, 2:07 a.m.