Description Usage Arguments Value Trimming Empty Rows Probe types Examples
Visualize microarray probe intensities arranged by their physical location on the array. A false color image is produced for each sample in the microarray object and arranged in a grid.
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | mimage(
object,
type = NULL,
select = NULL,
colors = NULL,
legend.label = NULL,
nrow = NULL,
ncol = NULL,
fixed = FALSE,
empty.rows = "fill",
empty.thresh = 0.6,
transform = NULL,
trim = 0.01,
fontsize = 12
)
## S4 method for signature 'AffyBatch'
mimage(
object,
type = "pm",
select = NULL,
colors = NULL,
legend.label = "Intensity",
nrow = NULL,
ncol = NULL,
fixed = FALSE,
empty.rows = "fill",
empty.thresh = 0.6,
transform = log2,
trim = 0.01,
fontsize = 12
)
## S4 method for signature 'PLMset'
mimage(
object,
type = "residuals",
select = NULL,
colors = NULL,
legend.label = type,
nrow = NULL,
ncol = NULL,
fixed = FALSE,
empty.rows = "fill",
empty.thresh = 0.6,
transform = identity,
trim = 0.01,
fontsize = 12
)
## S4 method for signature 'FeatureSet'
mimage(
object,
type = "pm",
select = NULL,
colors = NULL,
legend.label = "Intensity",
nrow = NULL,
ncol = NULL,
fixed = FALSE,
empty.rows = "fill",
empty.thresh = 0.6,
transform = log2,
trim = 0.01,
fontsize = 12
)
## S4 method for signature 'oligoPLM'
mimage(
object,
type = "residuals",
select = NULL,
colors = NULL,
legend.label = type,
nrow = NULL,
ncol = NULL,
fixed = FALSE,
empty.rows = "fill",
empty.thresh = 0.6,
transform = identity,
trim = 0.01,
fontsize = 12
)
## S4 method for signature 'array'
mimage(
object,
type = NULL,
select = NULL,
colors = NULL,
legend.label = "Values",
nrow = NULL,
ncol = NULL,
fixed = FALSE,
empty.rows = "ignore",
empty.thresh = 1,
transform = identity,
trim = 0,
fontsize = 12
)
|
object |
a valid Bioconductor microarray data structure |
type |
for microarray objects |
select |
a numeric, character or logical vector indicating samples to include |
colors |
a vector of colors used to represent probe values |
legend.label |
Legend label |
nrow |
optional, number of rows in grid layout |
ncol |
optional, number of columns in grid layout |
fixed |
Force images to assume a fixed aspect ratio corresponding to their physical dimensions |
empty.rows |
Should empty rows be filled with values from neighboring
rows (the default, |
empty.thresh |
what proportion of features must be missing from a row to consider that row empty |
transform |
a function to be applied to the values prior to visualizatio |
trim |
a percentile (default = |
fontsize |
font size for labels and legend |
invisibly a gtable
matrix of grobs
By default, a 98% winsorization is performed prior to visualization, pulling
in values outside of the 1st and 99th percentiles to their respective
endpoints. This can be modified using the trim
argument to provide
either a new percentile, or a range of 2 values defining the min/max of the
trimmed endpoints. Set trim = 0
to avoid trimming entirely.
As a result of platform design, the presence unindexed probes or probe
selection by the user (e.g., including only "pm"
probes), the
matrix
-representation of a microarray can contain numerous rows
comprised entirely (or mostly) of missing values, which may produce
undesirable rasterization artifacts in the microarray image. To avoid this,
empty rows are filled with values from a neighboring row. The threshold for
what constitutes an empty row can be tweaked with the empty.thresh
argument.
For microarray data structures the type
argument determines the
type of probe that should be included. The following table provides a
list of valid values for each supported microarray class:
AffyBatch
| "all" | "pm" | "mm" | - |
ExpressionFeatureSet
| "all" | "pm" | "mm" | - |
GeneFeatureSet
| "all" | "pm" | - | "bg" |
ExonFeatureSet
| "all" | "pm" | "mm" | "bg" |
SnpFeatureSet
| "all" | "pm" | "mm" | - |
1 2 3 4 5 6 7 8 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.