How to plot data with classes
13 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
More Answers (1)
David Hill
on 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');
See Also
Categories
Find more on Legend in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!