plotting horizontal scatter plots

조회 수: 3 (최근 30일)
Catarina
Catarina 2023년 7월 3일
댓글: Star Strider 2023년 7월 4일
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.

채택된 답변

Star Strider
Star Strider 2023년 7월 3일
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
Catarina
Catarina 2023년 7월 4일
thank you!
Star Strider
Star Strider 2023년 7월 4일
As always, my pleasure!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by