How to get the x axis and y axis to start at 0 when adding regression line in Figure window
8 ビュー (過去 30 日間)
古いコメントを表示
Stephnie Watson
2021 年 5 月 14 日
コメント済み: Stephnie Watson
2021 年 5 月 14 日
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?
0 件のコメント
採用された回答
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 件のコメント
Scott MacKenzie
2021 年 5 月 14 日
In that case, look for the XAxisLocation property in the Property Inspector and set it to "origin".
その他の回答 (1 件)
David Fletcher
2021 年 5 月 14 日
編集済み: David Fletcher
2021 年 5 月 14 日
Does the axis command do anything:
axis([0 70 0 70])
参考
カテゴリ
Help Center および File Exchange で Bar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!