Subplot with geobasemap and boxplot

8 ビュー (過去 30 日間)
Elizabeth Ramsey
Elizabeth Ramsey 2021 年 7 月 14 日
編集済み: Elizabeth Ramsey 2021 年 7 月 14 日
I'm trying to create a plot with a boxplot on one side and a geobasemap on the second. Is this possible?

回答 (1 件)

ANKUR KUMAR
ANKUR KUMAR 2021 年 7 月 14 日
You can do it easily using subplot.
subplot(1,2,1)
boxplot(randi(100,1,500));
subplot(1,2,2)
tsunamis = readtable('tsunamis.xlsx');
geobubble(tsunamis,'Latitude','Longitude','SizeVariable','MaxHeight')
geobasemap colorterrain
Just for the better appearance
figure
subplot(1,3,1)
boxplot(randi(100,1,500));
subplot(1,3,[2,3])
tsunamis = readtable('tsunamis.xlsx');
geobubble(tsunamis,'Latitude','Longitude','SizeVariable','MaxHeight')
geobasemap colorterrain
  1 件のコメント
dpb
dpb 2021 年 7 月 14 日
I don't have mapping TB to play with but I'd venture tiledlayout would work even better than subplot

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

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by