scatter plot data that meet a condition

조회 수: 11 (최근 30일)
Christina Geo
Christina Geo 2021년 9월 12일
편집: Ive J 2021년 9월 12일
Hello, I have a matrix A(8,2000) and another one flag(8, 2000) which is logical.I would like to scatter plot data as follows: if an element of flag is 1 then i would like to represent the same element of table A as a red dote, while if is 0 as blue dot. The array x_axis has the values of x axis. Both axes i would like to be in logarithmic scale.
I tried this but i have the error
'Index exceeds matrix dimensions.'
Any idea about what i am doing wrong with dimensions?
x_axis=[1/6,1/3,1/2,1,2,3,6,12];
sz=8;
flag=(~flag==0);
for j=1:length(A)
scatter(x_axis,A(flag,j),sz,'r','filled');
set(gca, 'XScale', 'log','YScale','log')
hold on
scatter(x_axis,A(~flag,j),sz,'b','filled');
set(gca, 'XScale', 'log','YScale','log')
end

채택된 답변

Ive J
Ive J 2021년 9월 12일
% some random values
A = randi([0, 100], 8, 2000);
F = randi([0 1], 8, 2000);
F = logical(F); % convert your flag to logical
figure;
x_axis = [1/6,1/3,1/2,1,2,3,6,12];
sz = 8;
x = repmat(x_axis.', 1, size(A, 2));
h = scatter(x(:), A(:), sz, 'filled');
col = repmat([0 0 1], numel(A), 1); % default color: blue
col(F(:), :) = repmat([1 0 0], sum(F(:)), 1); % set color of those with an available F to red(F(:, i), :) = repmat([1 0 0], sum(F(:, i)), 1); % set color of those with an available F to red
h.CData = col;
set(h.Parent, 'XScale', 'log', 'YScale', 'log')
  댓글 수: 2
Christina Geo
Christina Geo 2021년 9월 12일
yeah that works.thaks a lot! this part is a little bit confusing for me:
col(F(:), :) = repmat([1 0 0], sum(F(:)), 1);
so i would like to ask you, how can i change the size of dotes only for the red dots for example?
Thanks in advance!
Ive J
Ive J 2021년 9월 12일
편집: Ive J 2021년 9월 12일
You can change them in the same way you would change their colors based on flag indices:
% some random values
A = randi([0, 100], 8, 5); % just to better see size of dots on the plot
F = randi([0 1], 8, 5);
F = logical(F); % convert your flag to logical
figure;
x_axis = [1/6,1/3,1/2,1,2,3,6,12];
sz = 8;
x = repmat(x_axis.', 1, size(A, 2));
h = scatter(x(:), A(:), sz, 'filled');
col = repmat([0 0 1], numel(A), 1); % default color: blue
col(F(:), :) = repmat([1 0 0], sum(F(:)), 1); % set color of those with an available F to red(F(:, i), :) = repmat([1 0 0], sum(F(:, i)), 1); % set color of those with an available F to red
h.CData = col;
% custom size based on flag indices
h.SizeData = sz.*ones(numel(A), 1); % default size of all dots
h.SizeData(F(:)) = 25; % set the size of those with an available F to 25 (those colored red).
set(h.Parent, 'XScale', 'log', 'YScale', 'log')
The line
col(F(:), :) = repmat([1 0 0], sum(F(:)), 1);
changes the default color (i.e. blue) for those with a flag value of 1 to red (RGB color code of [1 0 0]). repmat replicates a vector or matrix (in this case [1 0 0]) N times (in this case, sum(F)), and was used because we want to replace multiple rows of our color matrix (col has rows equal to numel(F) with 3 columns).
As a simple example:
mat = [1 0 0; 1 0 0; 1 0 0; 1 0 0]
mat =
1 0 0
1 0 0
1 0 0
1 0 0
idx = [false, true, false, true]; % indice to change: 2 and 4
mat(idx, :) = repmat([0 0 1], sum(idx), 1)
mat =
1 0 0
0 0 1
1 0 0
0 0 1

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Grid Lines, Tick Values, and Labels에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by