Split the data into group then graph them

2 ビュー (過去 30 日間)
Yaser Khojah
Yaser Khojah 2020 年 2 月 10 日
コメント済み: Star Strider 2020 年 2 月 10 日
I have a big matrix as
[ENPV, SD, R];
I would like to split R into 3 groups based on criteria as
Group 1 when R is between [0 10]
Group 2 when R is between [11 20]
Group 3 when R is between [21 30]
Then, I want to draw them.
I tried something as below but did not work
[counting,group] = hist(R,3);
G = findgroups(R,group)
figure
gscatter(SD, ENPV, G)
Anyway to help wtih this please.

採用された回答

Star Strider
Star Strider 2020 年 2 月 10 日
If you have R2015a or later, the discretize funciton may do what you want:
group = discretize(R, [0 10 20 30]);
  2 件のコメント
Yaser Khojah
Yaser Khojah 2020 年 2 月 10 日
Thank you so much anywya, I can change the maker size in the gscatter?
Star Strider
Star Strider 2020 年 2 月 10 日
As always, my pleasure!
See the siz section in gscatter documentation.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Identification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by