How to plot data with classes
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
David Hill
am 13 Apr. 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');
Siehe auch
Kategorien
Mehr zu Legend finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!