How to get the x axis and y axis to start at 0 when adding regression line in Figure window

6 次查看(过去 30 天)
How do I edit the graph to get the x and y axis at 0 to line up at 0 instead of the way it is spaced?

采纳的回答

Scott MacKenzie
Scott MacKenzie 2021-5-14
I'm assuming you don't want to loose the points with y < 0. Something like this should work...
% test data
x = 1:100;
y = linspace(1,60) + randi([-5 5], 1, 100);
p = scatter(x, y, 'filled');
lsline;
ax = gca;
ax.YLim = [-10 70];
ax.XAxisLocation = 'origin';
  3 个评论

请先登录,再进行评论。

更多回答(1 个)

David Fletcher
David Fletcher 2021-5-14
编辑:David Fletcher 2021-5-14
Does the axis command do anything:
axis([0 70 0 70])
  1 个评论
Stephnie Watson
Stephnie Watson 2021-5-14
编辑:Stephnie Watson 2021-5-14
How would I add the axis code in the Figure window? I don't have any code that I have created. I used create plot then opened the Figures window to add the regression line.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Visual Exploration 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by