How to represent bar plots efficiently?
古いコメントを表示
I have a set of data, where the 2nd value is very very small compared to the first. Thus, it is very difficult to visually see. So is there any way to tweak the plot for visual experience? or any suggestions apart from bar plot?
% Example data (replace with your data)
values = [0.0159, 0.00005];
% Create a bar plot with log scale y-axis
figure;
bar(values, 'FaceColor', [0.5 0.5 0.5], 'EdgeColor', 'none');
ylabel('Values ');
xticks(1:length(values));
xticklabels({'Value 1', 'Value 2'});
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Color and Styling についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

