Info

此问题已关闭。 请重新打开它进行编辑或回答。

How can I maximize the range of included data to built my robust regression model?

2 次查看(过去 30 天)
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 个)

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by