Plotting 2 data points per subject with connected line

I am trying to plot 2 different values on a shared scale (e.g. scores on two different tests) per subject with a line connecting both scores per subject rather than a continuous line connecting each set of scores for all subjects. See my doodle for hopefully a more clear visual representation :) Thanks in advance

댓글 수: 1

I should add that the more typical display with 2 data points per subject in this fashion won't work because of the amount of participants and overlap:

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

 채택된 답변

Voss
Voss 2022년 7월 15일
var1 = [5 3 8 5 12];
var2 = [8 10 5 7 6];
N = numel(var1);
plot(1:N,var1,'o')
hold on
plot(1:N,var2,'x')
x_temp = repmat(1:N,3,1);
y_temp = [var1(:) var2(:) NaN(numel(var1),1)].';
plot(x_temp(:),y_temp(:),'k')
xlim([0 10])
ylim([0 15])

댓글 수: 4

Thank you! This works perfectly except it overrides the vertical lines for continuous lines as soon as I change marker properties (e.g. "Marker",'o',"MarkerSize",9,"MarkerEdgeColor",'k',"MarkerFaceColor",[0.552 0.316 0.132]). Any insight?
Set 'LineStyle', 'none' along with those other properties.
Voila, looks perfect, thanks again!
You're welcome!

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

추가 답변 (0개)

태그

질문:

E G
2022년 7월 15일

댓글:

2022년 7월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by