Color Coding Data Points Using Scatter
19 ビュー (過去 30 日間)
古いコメントを表示
Hi all,
I hope everyone is doing well!
I have a picture of my code, and am wanting to color code my thresholds according to colors of my choosing instead of the default RGB colors, as the RGB plot does not show the pattern of the data well.
I can not figure out how to make the points themselves the colors that I want, only how to divide them according to RGB colors. Does anyone have any advice on how to do this?
0 件のコメント
回答 (1 件)
Voss
2023 年 3 月 5 日
編集済み: Voss
2023 年 3 月 5 日
% random data
T = [10 25 40 50 75];
alldataoxides = struct( ...
'pHs',3+9*rand(1,100), ...
'kds',80*rand(1,100), ...
'Temperature',T(randi(numel(T),1,100)));
% define your pH thresholds (i.e., bin edges)
pHs = [7.0, 9.1];
% define your colors (one for each bin -> one more color than you have thresholds)
colors = [ ...
0.4 0 1; ...
0 0.6 0.4; ...
1 0.6 0; ...
];
% put -Inf and Inf on the ends to include the lowest and highest bins
bin_edges = [-Inf, pHs, Inf];
% bin_idx is which bin each pH value is in
bin_idx = discretize(alldataoxides.pHs,bin_edges);
% color matrix -> the color of each data point
colorIDb = colors(bin_idx,:)
% scatter plot
sz = 50;
figure(7); hold on; box on;
scatter(alldataoxides.Temperature, log10(alldataoxides.kds), sz, colorIDb, 'filled')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Colormaps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!