plotting horizontal scatter plots

3 vues (au cours des 30 derniers jours)
Catarina
Catarina le 3 Juil 2023
Commenté : Star Strider le 4 Juil 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.

Réponse acceptée

Star Strider
Star Strider le 3 Juil 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 commentaires
Catarina
Catarina le 4 Juil 2023
thank you!
Star Strider
Star Strider le 4 Juil 2023
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by