Description Usage Arguments Value Author(s) See Also Examples
View source: R/plotSmoothScat.R
Plots the correlation in gene expression between two samples. Each dot represents a gene, and the dots have a density-dependent coloring. Genes with exceptional behavior can be highlighted by showing their gene symbol.
1 2 3 4 5 6 7 8 9 | plotComb2Samples(
object,
x,
y,
trsholdX = NULL,
trsholdY = NULL,
probe2gene = TRUE,
...
)
|
object |
ExpressionSet object for the experiment |
x |
String containing the name of the first sample. This should be a
the name of a column in the |
y |
String containing the name of the second sample. See |
trsholdX |
Vector of two values specifying the X-axis thresholds within which genes should be highlighted by their gene symbol. |
trsholdY |
Vector of two values specifying the Y-axis thresholds within which genes should be highlighted by their gene symbol. |
probe2gene |
Boolean indicating whether the probeset should be translated to a gene symbol (used for the default title of the plot) |
... |
Possibility to add extra plot options. See |
No returned value, a plot is drawn to the current device.
W. Talloen
1 2 3 4 5 6 7 | if (require(ALL)){
data(ALL, package = "ALL")
ALL <- addGeneInfo(ALL)
plotComb2Samples(ALL,"84004", "01003",
trsholdX = c(10,12), trsholdY = c(4,6),
xlab = "a B-cell", ylab = "a T-cell")
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.