Scatter Plot marker size scale
    29 ビュー (過去 30 日間)
  
       古いコメントを表示
    
I am making a scatter plot with 4 variables- x, y, marker size, and marker color. I made the colormap easy enough, but how do I add a scale to give reference to what marker sizes correspond to the numerical values of each data point. Something like the one shown below.

0 件のコメント
回答 (1 件)
  Amith
    
 2023 年 3 月 2 日
        As per my understanding you wanted the markers in different sizes and want those to be labeled in the legend with the size being shown .You can achieve this by refering to the below code -
x = 1:3;
y1 = x.^2;
y2 = x.^3;
% Define marker sizes for each point
ms1 = [4, 6, 8];
sizes = [50,300,650];
% Plot the data with different marker sizes
figure;
for size = 1:3
    hold on;
    plot(x(size), y1(size), 'o', 'MarkerSize', ms1(size));
    hold off;
end
%write the legend corresponding values
x = cellstr(num2str(sizes', '%-d'));
% Add a legend with marker sizes
legend(x);
0 件のコメント
参考
カテゴリ
				Help Center および File Exchange で Legend についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!