Plot with color variation from third variable

202 次查看(过去 30 天)
Hi, everyone.
My data have three variables which are Time (x-axis), S4 (y-axis) and PRN. I'm trying to plot the data color according to the PRN (refer code) and resulting as photo below. I want to know is it possible to make the data color in one by one color (e.g: Black, and another 30 colors according to total PRN) and not in gradient as below? Or do I need to manually coded each PRN for each color?
I appreciate any help you can provide.
clear
clc
%_______________Read data_______________%
Time=xlsread('Jan-para.xlsx','B:B');
S4=xlsread('Jan-para.xlsx','O:O');
PRN=xlsread('Jan-para.xlsx','C:C');
figure%>>>>>>>>>>>>>>>>>>>>>>>>>>>>> FIGURE starts
scatter(Time,S4,10,PRN,'filled');
colorbar;
title('January 2014');
datetick('x', 'HH');
xlabel('Coordinated Universal Time, UTC (hr)');
ylabel('Amplitude scintillation, S4');
hold all
%_______________PRNall_______________%

采纳的回答

Cris LaPierre
Cris LaPierre 2021-1-8
Look at gscatter. It allows you to create a scatter plot using the value of a 3rd variable to set the color of you points.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by