maloglog

Create a loglog plot of microarray data

Syntax

maloglog(X, Y, 'PropertyName', PropertyValue...)

maloglog(..., 'FactorLines', FactorLinesValue)
maloglog(..., 'Title', TitleValue)
maloglog(..., 'Labels', LablesValues)
maloglog(..., 'HandleGraphicName', HGValue)
H = maloglog(...)

Description

maloglog(X, Y, 'PropertyName', PropertyValue...) creates a loglog scatter plot of X versus Y.

maloglog(..., 'FactorLines', N) adds lines showing a factor of N change.

maloglog(..., 'Title', TitleValue) allows you to specify a title for the plot.

maloglog(..., 'Labels', LabelsValues) allows you to specify a cell array of labels for the data. If LabelsValues is defined, then clicking a point on the plot shows the label corresponding to that point.

maloglog(..., 'HandleGraphicsName', HGValue) allows you to pass optional Handle Graphics property name/property value pairs to the function.

H = maloglog(...) returns the handle to the plot.

Examples

maStruct = gprread('mouse_a1wt.gpr');
Red = maStruct.Data(:,4);
Green = maStruct.Data(:,13);
maloglog(Red, Green, 'title', 'Red versus Green')
figure
maloglog(Red, Green, 'FactorLines', 2,...
         'Labels', maStruct.Names)

See Also

Bioinformatics Toolbox functions maboxplot, mairplot


© 1994-2005 The MathWorks, Inc.