필터 지우기
필터 지우기

Plot with color variation from third variable

조회 수: 202 (최근 30일)
Ann
Ann 2021년 1월 8일
댓글: Ann 2021년 1월 8일
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.
  댓글 수: 1
Ann
Ann 2021년 1월 8일
Cool! It turns out nicely! Thank you kindly.

댓글을 달려면 로그인하십시오.

추가 답변 (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