How to add trendline to scatterplot?
855 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ani Asoyan
am 27 Dez. 2020
Bearbeitet: Dima
am 17 Mär. 2024
hi, I have 2 variables with data, like
x=2 1 4 68 4 5
y=5 4 2 23 21 50
I want to add trendline to the scatter plot. how can I do that?
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 27 Dez. 2020
Something like this
x = [2 1 4 68 4 5]
y = [5 4 2 23 21 50]
p = polyfit(x, y, 1);
px = [min(x) max(x)];
py = polyval(p, px);
scatter(x, y, 'filled')
hold on
plot(px, py, 'LineWidth', 2);
2 Kommentare
Siehe auch
Kategorien
Mehr zu Scatter Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!