Description Usage Arguments Details Value Author(s) See Also Examples
The main function in omicade4.
Performing multiple co-inertia analysis on a list
of data.frame
s
or matrix
1 2 3 4 5 6 |
df.list |
A list of |
cia.nf |
An integer indicating the number of kept axes |
cia.scan |
A logical indicating whether the co-inertia analysis
eigenvalue (scree) plot should be shown so that the number of axes,
( |
nsc |
A logical indicating whether multiple co-inertia analysis should be
performed using multiple non-symmetric correspondence analyses
|
svd |
A logical indicates which function should be used to perform singular value decomposition. |
sample.lab |
A logical indicating if the samples should be labelled, the default is TRUE. |
sample.color |
Defining colours of samples for plotting sample space, the length of this
argument should be either one (uniform color) or the same with the
column number of |
sample.legend |
A logical indicating if the legend for sample space should be drawn. |
df.color |
Defining the colours for plotting variables (genes) from different |
df.pch |
Defining the |
phenovec |
A factor for plotting sample space, phenovec could be
used to distinguish individuals in the |
x |
An object of class |
axes |
A vector of integer in length 2 to indicate the axes are going to be plotted. The default are first two axes. |
gene.nlab |
An integer indicating how many top weighted genes on each axis should be labelled |
... |
Other arguments |
The column number of data.frame
in the df.list
must be the same,
and the same column
from different data.frame
should be matchable. For example, Microarray
profiling for the same set of cell lines, patients and etc.
mcia
calls dudi.nsc
,
ktab
and mcoa
in ade4
packages.
Plotting and visualizing mcia
results
Two functions could be used to visualize the result of mcia
:
The first is plot.mcia
,
which results in four plots. Top left represents the sample space. Individuals
from the same column of different data.frame
s are linked by edges.
Different platforms are distinguished by the shape of points.
Top right shows the variable space, datasets are marked by different colours.
Bottom left represents the eigenvalue scree plot.
The pseudo-eigenvalue space of all data.frame
s are visualized in the bottom right panel.
The second function is plotVar.mcia
, which could be used to
plot the variable space for different datasets as well as finding and visualizing the
variables (genes) across datasets.
Other methods
selectVar.mcia
: selecting variables (genes) according to the their coordinates.
call |
the function called |
mcoa |
The results returned by |
coa |
The results returned by separate analysis (applying |
Chen Meng
See Also as mcoa
, plotVar
, plotVar
1 2 3 4 5 6 7 | data(NCI60_4arrays)
mcoin <- mcia(NCI60_4arrays)
plot(mcoin, sample.lab=FALSE, df.col=4:7)
colcode <- sapply(strsplit(colnames(NCI60_4arrays$agilent), split="\\."),
function(x) x[1])
plot(mcoin, sample.lab=FALSE, sample.color=as.factor(colcode))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.