Description Usage Arguments Value Details Note Examples
The function does a PCA analysis using prcomp
function
using percent methylation matrix as an input.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | PCASamples(.Object, screeplot=FALSE, adj.lim=c(0.0004,0.1), scale=TRUE,
center=TRUE,comp=c(1,2),transpose=TRUE,sd.filter=TRUE,
sd.threshold=0.5,filterByQuantile=TRUE,obj.return=FALSE,chunk.size)
## S4 method for signature 'methylBase'
PCASamples(
.Object,
screeplot,
adj.lim,
scale,
center,
comp,
transpose,
sd.filter,
sd.threshold,
filterByQuantile,
obj.return
)
## S4 method for signature 'methylBaseDB'
PCASamples(
.Object,
screeplot = FALSE,
adj.lim = c(4e-04, 0.1),
scale = TRUE,
center = TRUE,
comp = c(1, 2),
transpose = TRUE,
sd.filter = TRUE,
sd.threshold = 0.5,
filterByQuantile = TRUE,
obj.return = FALSE,
chunk.size = 1e+06
)
|
.Object |
a |
screeplot |
a logical value indicating whether to plot the variances against the number of the principal component. (default: FALSE) |
adj.lim |
a vector indicating the propotional adjustment of xlim (adj.lim[1]) and ylim (adj.lim[2]). This is primarily used for adjusting the visibility of sample labels on the on the PCA plot. (default: c(0.0004,0.1)) |
scale |
logical indicating if |
center |
logical indicating if |
comp |
vector of integers with 2 elements specifying which components to be plotted. |
transpose |
if TRUE (default) percent methylation matrix will be transposed, this is equivalent to doing PCA on variables that are regions/bases. The resulting plot will location of samples in the new coordinate system if FALSE the variables for the matrix will be samples and the resulting plot whill show how each sample (variable) contributes to the principle component.the samples that are highly correlated should have similar contributions to the principal components. |
sd.filter |
If |
sd.threshold |
A numeric value. If |
filterByQuantile |
A logical determining if |
obj.return |
if the result of |
chunk.size |
Number of rows to be taken as a chunk for processing the
|
The form of the value returned by PCASamples
is the summary
of principal component analysis by prcomp
.
The parameter chunk.size
is only used when working with
methylBaseDB
objects,
as they are read in chunk by chunk to enable processing large-sized
objects which are stored as flat file database.
Per default the chunk.size is set to 1M rows, which should work for most
systems. If you encounter memory problems or
have a high amount of memory available feel free to adjust the
chunk.size
.
cor option is not in use anymore, since prcomp
is used for PCA
analysis instead of princomp
1 2 3 4 5 6 7 | data(methylKit)
# do PCA with filtering rows with low variation, filter rows with standard
# deviation lower than the 50th percentile of Standard deviation distribution
PCASamples(methylBase.obj,screeplot=FALSE, adj.lim=c(0.0004,0.1),
scale=TRUE,center=TRUE,comp=c(1,2),transpose=TRUE,sd.filter=TRUE,
sd.threshold=0.5,filterByQuantile=TRUE,obj.return=FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.