How to use sequentialfs in regression?
3 次查看(过去 30 天)
显示 更早的评论
I'm trying to use sequential feature selection in a regression problem and I keep on getting errors. I know something is wrong with my function handle but can't figure it out. Tried these three handles:
%fun = @(XT,yT,Xt,yt)loss(regress(yT,XT),Xt,yt);
%fun = @(XT,yT,Xt,yt)rmse(predict(fitlm(XT,yT),Xt),yt);
%fun = @(XT,yT,Xt,yt)rmse(predict(regress(yT,XT),Xt),yt);
[fs,history] = sequentialfs(fun,X,y,'cv',c,'options',opts);
1 个评论
Sarvesh Kale
2023-3-13
It would be very helpful if you post the full code, along with screenshots of error messages, this would help in quick resolution of issue
回答(1 个)
Sarvesh Kale
2023-3-13
Hi azarang asadi,
The documentation link to the sequentialfs function is attached here. There is also an example that demonstrates how to use the function. I hope this helps with your query.
Thank you
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!