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:

请先登录,再进行评论。

 采纳的回答

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!

请先登录,再进行评论。

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by