plotting horizontal scatter plots

5 visualizaciones (últimos 30 días)
Catarina
Catarina el 3 de Jul. de 2023
Comentada: Star Strider el 4 de Jul. de 2023
Hello,
How can i display scatter points horizontally in a horizontal bar plot? Like, instead of having the scatter plot plotting from the x axis, making it plot from the y axis.

Respuesta aceptada

Star Strider
Star Strider el 3 de Jul. de 2023
Reverse the ‘x’ and ‘y’ coordinates in the scatter plot —
x = 1:5;
y = rand(size(x));
figure
barh(rand(size(x)))
hold on
scatter(y, x, 100, y, 'filled', 'p')
hold off
.
  2 comentarios
Catarina
Catarina el 4 de Jul. de 2023
thank you!
Star Strider
Star Strider el 4 de Jul. de 2023
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by