How to reduce the space between Yticks?
13 views (last 30 days)
Show older comments
Hi, I am plotting a scatter plot with two groups on the Y axis. I want to reduce the distance between these groups in the plot as i only have two groups. Any help to solve this will be appreciated.

0 Comments
Accepted Answer
madhan ravi
on 6 Nov 2018
Edited: madhan ravi
on 6 Nov 2018
ylim([0 2])
yticks([0 2])
or
set(gca,'YTick',0:0.5:2)
1 Comment
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!