HOW TO CHOOSE EFFECTIVE PARAMETERs IN STEPWISE REGRESSION?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dear friends, I got 80 independent variables and one dependent variable with 1000 datasets. I was performing stepwise regression with quadratic fitting. MATLAB memory is showing an error of "Out of Memory" in very starting of its execution. Definitely it is because of large number of variables. Now I am planning to select important (significant) variables first (out of 80 variables) to run my program. Could you please help me how to execute this task.
0 commentaires
Réponse acceptée
the cyclist
le 21 Déc 2015
I'm not so sure that 1000 observations of 80 variables should cause an out-of-memory error. I just successfully ran the code
N = 1000;
X = randn(N,80);
Y = randn(N,1);
[b,se,pval,inmodel,stats,nextstep,history] = stepwisefit(X,Y)
Are you sure there is not some problem with the setup? Can you post your X/Y data?
I suppose one way to test which independent variables are more likely to be important in predicting the dependent variable is to calculate the correlation coefficients between them.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Linear and Nonlinear Regression dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!