HOW TO CHOOSE EFFECTIVE PARAMETERs IN STEPWISE REGRESSION?
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Ajay Goyal
il 21 Dic 2015
Commentato: Ajay Goyal
il 22 Dic 2015
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 Commenti
Risposta accettata
the cyclist
il 21 Dic 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.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Linear and Nonlinear Regression in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!