How do I add lines between individual scatter points in a bar graph?

4 visualizaciones (últimos 30 días)
Evgeniia Diachek
Evgeniia Diachek el 15 de Oct. de 2018
Comentada: KSSV el 15 de Oct. de 2018
The picture of the plot is attached. I need to add lines between the individual scatter points within each bar group, so there will be 4 lines for each bar group.
Here is the part of the code for the scatter plot:
% code
for i = 1:12
scatter(x(i).* ones(length(num(i,:)),1),num(i,:),'*','MarkerEdgeColor',[0.20 0.21 0.22])
end;

Respuestas (1)

KSSV
KSSV el 15 de Oct. de 2018
figure
hold on
N = 10 ;
bar(rand(10,1))
plot(repelem(4.5,1,N),linspace(0,1,N))
  2 comentarios
Evgeniia Diachek
Evgeniia Diachek el 15 de Oct. de 2018
This code doesn't quite work. I have 8 individual scatter points in a group of bars. I need to connect them, so there are 4 lines in each bar group.
KSSV
KSSV el 15 de Oct. de 2018
I gave you a pseudo code on plotting a line on bar graph. You have to extend it in your case.

Iniciar sesión para comentar.

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by