Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
How can I maximize the range of included data to built my robust regression model?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I would like to use "robustfit" function with including maximum points that I have in the regression,
[b,stats] = robustfit(X,y,wfun,tune,const)
the example below is from matlab help:
x = (1:10)';
rng default; % For reproducibility
y = 10 - 2*x + randn(10,1);
y(10) = 0;
bls = regress(y,[ones(10,1) x])
[brob,stats] = robustfit(x,y,'andrews',1.339,'on')
ac=sum(stats.resid)
scatter(x,y,'filled'); grid on; hold on
plot(x,bls(1)+bls(2)*x,'r','LineWidth',2);
plot(x,brob(1)+brob(2)*x,'g','LineWidth',2)
legend('Data','Ordinary Least Squares','Robust Regression')
Thanks in advance for your cooperation
Riyadh
0 Kommentare
Antworten (0)
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!