Set scale of boxplots

12 ビュー (過去 30 日間)
Emu
Emu 2024 年 5 月 4 日
コメント済み: Emu 2024 年 5 月 4 日
I'm plotting a load of boxplots, but some of them are plotting at different scales e.g. x10-4 vs x10-5 (see top left corner), how do I make the scale uniform?

採用された回答

the cyclist
the cyclist 2024 年 5 月 4 日
% Make some pretend data
rng default
x = 1.e-5*rand(1000,16);
% Boxplot
boxplot(x)
% Fix the y-axis scale
ylim([0 1.e-4])
  2 件のコメント
the cyclist
the cyclist 2024 年 5 月 4 日
You might also find the linkaxes function useful, depending on how you are doing your plotting. It will assign the axis limits dynamically, but ensure that they are shared between your plots.
Emu
Emu 2024 年 5 月 4 日
Thank you this worked perfectly: ylim([-2.e-4 2.e-4]) :)

サインインしてコメントする。

その他の回答 (0 件)

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by