필터 지우기
필터 지우기

How to Specify Line Color & Style

조회 수: 1 (최근 30일)
Ashwin Sivalingam
Ashwin Sivalingam 2019년 4월 23일
댓글: Adam Danz 2019년 4월 23일
Hi, I have created a scatterplot graph but am confused on how to incorporate how I can specify the line type for each variable. For example, If I add '-' to the scatterplot function, it ruins the whole graph. I would like for it to look like this:
Screenshot (2).png
But, my current code yields:
Screenshot (4).png
numVal =[2006 95 30 42 149
2007 109 33 43 164
2008 95 33 36 167
2009 95 42 39 209
2010 117 35 33 176
2011 114 29 39 147
2012 120 22 40 110
2013 126 30 44 151
2014 120 33 43 166];
figure;
title('Cholesterol Fall 2018');
scatter(numVal(:,1),numVal(:,2), 'filled','cyan');
hold on;
xlabel('year');
scatter(numVal(:,1),numVal(:,3), 'filled','r','o' );
scatter(numVal(:,1),numVal(:,4), 'filled','green','o');
scatter(numVal(:,1),numVal(:,5), 'filled','blue','d');
grid on;
legend('LDL Cholesterol','VLDL Cholesterol','HDL Cholesterol','Trygliycerides','Location','northwest')
title('Cholesterol Fall 2018');

채택된 답변

Adam Danz
Adam Danz 2019년 4월 23일
편집: Adam Danz 2019년 4월 23일
Use plot() instead of scatter(). For example,
plot(numVal(:,1),numVal(:,4), 'g-o', 'markerfacecolor', 'g');
For a description of all line properties,
  댓글 수: 4
Ashwin Sivalingam
Ashwin Sivalingam 2019년 4월 23일
Your edited answer works, thanks!!
Adam Danz
Adam Danz 2019년 4월 23일
I just added: 'markerfacecolor', 'g'
By 'messed up' you must have meant that the markers were not filled to the same color as the edges.
Glad it worked out!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by