gplotmatrix2

Scatter plot matrix with 2 grouping variables.
272.0 次下载
更新时间 2016/9/1

查看许可证

[haxes,hax_big] = gplotmatrix2(X,Y,group1,group2) plots the given X and
Y data, each Nx1 vectors, according to grouping variables group1 and
group2. gplotmatrix2 splits the X and Y into g1 x g2 subplots, where g1
is the number of groups in group1, and g2 is the number of groups in
group2.
[haxes,hax_big] = gplotmatrix2(X,Y,group1,group2,xlbl,ylbl,legendlbl)
accepts optional parameters xlbl, ylbl, and legendlbl. xlbl and ylbl
describe the x- and y- labels, respectively. legendlbl is the title
text object for the legend.
Example:
idx1 = randi([1 5], 1000, 1);
idx2 = randi([1 15], 1000, 1);
catnames1 = {'0''', '5''', '30''', '60''', '180'''};
catnames2 = {'a', 'b', 'c', 'd', 'e', ...
'f', 'g', 'h', 'i', 'j', ...
'k', 'l', 'm', 'n', 'o'};
T = categorical(idx1, 1:length(catnames1), catnames1); % group 1
M = categorical(idx2, 1:length(catnames2), catnames2); % group 2
X = 100*randn(1000,1);
Y = 20*randn(1000,1);
gplotmatrix2(X,Y,M,T,'Cell Area','Cytoplasm EGFR','Time min')

See also GPLOTMATRIX, GSCATTER, GSCATTER2.

引用格式

Nade Sritanyaratana (2024). gplotmatrix2 (https://www.mathworks.com/matlabcentral/fileexchange/48216-gplotmatrix2), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2014a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Discrete Data Plots 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.0.1

Updated license

1.0.0.0