Tiled layout with boxplot and 'Padding', 'none'

22 ビュー (過去 30 日間)
Benoit Espinola
Benoit Espinola 2020 年 6 月 17 日
編集済み: Matt J 2021 年 4 月 16 日
When using 'Padding','none' for my tiled layout. The box plots are not centered and are cropped inside the figure.
figure
t = tiledlayout(1,2, 'Padding', 'none');
nexttile;
boxplot(randn(10,5));
nexttile;
boxplot(randn(10,5));
Result:
Why is that and how to solve it?
  2 件のコメント
Kevin Joshi
Kevin Joshi 2020 年 6 月 17 日
Suggestion: Use tight_subplot
https://in.mathworks.com/matlabcentral/fileexchange/27991-tight_subplot-nh-nw-gap-marg_h-marg_w
Matt J
Matt J 2021 年 4 月 16 日
'Padding'='none' is not a documented setting. The choices are either 'loose','compact', or 'tight'.

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

採用された回答

Adam Danz
Adam Danz 2021 年 4 月 16 日
Why this is happening
The boxplot function uses a local function setLabelappdata() to adjust the axes' OuterPosition, PositionConstraint & LooseInset properties after the boxplots are rendered. However, these properties are not editable in axes created by TiledLayout. Matlab throws a warning. Hopefully MathWorks will either address this problem or make the position properties of tiledChartLayout objects editable.
Warning: Unable to set 'Position', 'InnerPosition', 'OuterPosition', or
'ActivePositionProperty' for objects in a TiledChartLayout
Workarounds
1. In your case, set padding to compact instead of none (see other updates to Padding options in r2021a).
2. You can turn the warning off (see the answer from this similar thread).
3. Use axes or subplot instead of tiledlayout.
  1 件のコメント
Matt J
Matt J 2021 年 4 月 16 日
編集済み: Matt J 2021 年 4 月 16 日
There are also alternative boxplot routines on the File Exchange that you could try, which do not attempt the property settings that Adam mentions. This one, in particular, seems to work,
t = tiledlayout(1,2, 'Padding', 'tight');
nexttile;
boxplotx(randn(10,5));
nexttile;
boxplotx(randn(10,5));

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

その他の回答 (0 件)

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by