scatter plotting of string data
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Muhammad
el 1 de Jun. de 2021
Comentada: Muhammad
el 1 de Jun. de 2021
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 comentarios
KALYAN ACHARJYA
el 1 de Jun. de 2021
Ex
name={'A','B','C','D'};
rate=[30,40,50,90];
name=categorical(name);
scatter(name,rate);
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Scatter Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!