profilesPlot: Plot expression profiles of multiple genes or probesets Plot...

Description Usage Arguments Value Author(s) See Also Examples

Description

Plot expression profiles of multiple genes or probesets Plot expression profiles of multiple genes or probesets. Each line depicts a gene, and the color legend can be used to identify the gene.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
profilesPlot(
  object,
  probesetIds,
  sampleIDs = TRUE,
  addLegend = TRUE,
  legendPos = "topleft",
  colvec = NULL,
  orderGroups = NULL,
  ...
)

Arguments

object

ExpressionSet object for the experiment

probesetIds

The probeset ID. These should be stored in the featureNames of the expressionSet object.

sampleIDs

A boolean or a string to determine the labels on the x-axis. Setting it to FALSE results in no labels (interesting when the labels are unreadable due to large sample sizes). Setting it to a string will put the values of that particular pData column as labels. The string should be a name of a column in the pData of the expressionSet object

addLegend

Boolean indicating whether a legend for the colors of the dots should be added.

legendPos

Specify where the legend should be placed. Typically either topright, bottomright, topleft (the default) or bottomleft

colvec

Vector of colors to be used for the groups. If not specified, the default colors of a4palette are used

orderGroups

String containing the name of the grouping variable to order the samples in the x-axis accordingly. This should be a name of a column in the pData of the expressionSet object.

...

Possibility to add extra plot options. See par

Value

No returned value, a plot is drawn in the current device.

Author(s)

W. Talloen

See Also

plot1gene, boxPlot

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
if (require(ALL)){
data(ALL, package = "ALL")
ALL <- addGeneInfo(ALL)
ALL$BTtype <- as.factor(substr(ALL$BT,0,1))
myGeneSymbol <- c("LCK")	# a gene 
probesetPos <- which(myGeneSymbol == featureData(ALL)$SYMBOL)
myProbesetIds <- featureNames(ALL)[probesetPos]
profilesPlot(object = ALL, probesetIds = myProbesetIds, 
      orderGroups = "BT", sampleIDs = "BT")
}

a4Base documentation built on Nov. 8, 2020, 5:41 p.m.

Related to profilesPlot in a4Base...