how to specify filling properties in gscatter?

7 ビュー (過去 30 日間)
Zhe Dong
Zhe Dong 2024 年 3 月 30 日
コメント済み: Voss 2024 年 3 月 30 日
I'm trying to make a group scatter plot using gscatter function, there are two contrast groups each has three subgroups, is there a way I can seperate two contrast groups by filling or not filling the markers' interiors? here's a group example, how can I set female group with marker face filled while the male group is not?
group = {'female1','female2','femaler','male1','male2','male3'};

採用された回答

Voss
Voss 2024 年 3 月 30 日
編集済み: Voss 2024 年 3 月 30 日
You can modify the required markers after calling gscatter. Here's an example:
% random data for 6 groups
N = 100;
Ngroups = 6;
x = rand(N,1);
y = rand(N,1);
g = randi(Ngroups,N,1);
% make the gscatter plot with filled markers
h = gscatter(x,y,g,[],'o','filled')
h =
6×1 Line array: Line (1) Line (2) Line (3) Line (4) Line (5) Line (6)
% make the markers for 3 of the groups un-filled
fill_idx = [1 2 3];
set(h(fill_idx),'MarkerFaceColor','none')
  2 件のコメント
Zhe Dong
Zhe Dong 2024 年 3 月 30 日
Thanks it worked pretty well!
Voss
Voss 2024 年 3 月 30 日
You're welcome!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeScatter Plots についてさらに検索

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by