plotBlockImage: Plot Microarray Image Block

Description Usage Arguments Value References See Also Examples

View source: R/plotBlockImage.R

Description

Displays a block of a microarray image.

Usage

1

Arguments

z

Intensities of the image pixels, in the form a of a matrix.

title

A title for the image plot (optional).

one

Sets appropriate graphics parameters for displaying individuals spots (default:FALSE).

Value

None, other than the displayed plot.

References

Q. Li, C. Fraley, R. Bumgarner, K. Y. Yeung, and A. Raftery\ Robust model-based segmentation of microarray images,\ Technical Report No.~473, Department of Statistics, University of Washington, January 2005.

See Also

spotseg

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
data(spotSegTest)

# columns of spotSegTest:
#  1 intensities from the Cy3 (green) channel
#  2 intensities from the Cy5 (red) channel

dataTransformation <- function(x) (256*256-1-x)^2*4.71542407E-05 

chan1 <- matrix(dataTransformation(spotSegTest[,1]), 144, 199)
chan2 <- matrix(dataTransformation(spotSegTest[,2]), 144, 199)

plotBlockImage(chan1)
plotBlockImage(chan2)

spotSegmentation documentation built on April 28, 2020, 9:18 p.m.