Browse code

Adds MineICA, SomatiCA and lpNet to the repos.

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/MineICA@73179 bc3139a8-67e5-0310-9ffc-ced21a209358

Marc Carlson authored on 05/02/2013 22:15:53
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,25 @@
1
+\name{correl2Comp}
2
+\alias{correl2Comp}
3
+\title{correl2Comp}
4
+\description{This function computes the correlation between two components.}
5
+\usage{correl2Comp(comp1, comp2, type.corr = "pearson", plot = FALSE, 
6
+    cutoff_zval = 0, test = FALSE, alreadyTreat = FALSE)}
7
+\arguments{
8
+  \item{comp1}{The first component, a vector of projections or contributions indexed by labels}
9
+  \item{comp2}{The second component, a vector of projections or contributions indexed by labels}
10
+  \item{type.corr}{Type of correlation to be computed, either \code{'pearson'} or \code{'spearman'}}
11
+  \item{plot}{if \code{TRUE}, plot \code{comp1} vs \code{comp2}}
12
+  \item{cutoff_zval}{either NULL or 0 (default) if all genes are used to compute the correlation between the components, or a threshold to compute the correlation on the genes that have at least a scaled projection higher than cutoff_zval. }
13
+  \item{test}{if TRUE the correlation test p-value is returned instead of the correlation value}
14
+  \item{alreadyTreat}{if TRUE comp1 and comp2 are considered as being already treated (i.e scaled and restricted to common elements) }
15
+}
16
+\details{Before computing the correlation, the components are scaled and restricted to common labels.  
17
+When \code{cutoff_zval} is different from \code{0}, the elements that are included in the circle of center 0 and radius \code{cutoff_zval} are not taken into account during the computation of the correlation.}
18
+\value{This function returns either the correlation value or the p-value of the correlation test.}
19
+
20
+\author{Anne Biton}
21
+
22
+
23
+
24
+
25
+