scatter plotting of string data

2 ビュー (過去 30 日間)
Muhammad
Muhammad 2021 年 6 月 1 日
コメント済み: Muhammad 2021 年 6 月 1 日
i have two cell in work sapce
name 57*1 cell
fatality_rate 57*1 cell
here names include string data
i want scatter plotting
and also the data shown with different colours
scatter(name,fatality_rate)
but it gives error
Error using scatter (line 56)
Input arguments must be numeric,
datetime, duration or categorical.
Error in untitled (line 17)
scatter(name,fatlity_rate)
  2 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2021 年 6 月 1 日
Ex
name={'A','B','C','D'};
rate=[30,40,50,90];
name=categorical(name);
scatter(name,rate);
Muhammad
Muhammad 2021 年 6 月 1 日
good its working
i also wanted to plots with colours

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

採用された回答

Jakob B. Nielsen
Jakob B. Nielsen 2021 年 6 月 1 日

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by