How to plot data with classes
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello.
I'm a beginner in Matlab.
I want to plot data with classes.
X = 1305 x 6
Y = 1305 x 1 (class : 0,1,2,3,4,5,6)
Could I get an idea to plot this data with legend?
I want to get this kind of picture.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/284026/image.png)
clear all
close all
X = csvread('data.csv');
Y = csvread('class.csv');
0 comentarios
Respuesta aceptada
Más respuestas (1)
David Hill
el 13 de Abr. de 2020
It is unclear what you are going to use as your x,y coordinates in your data set.
lookup='rgbymck';
c=lookup(Y+1);%convert 0-6 to colors
scatter(x,y,c,'filled');
Ver también
Categorías
Más información sobre Legend 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!