Feature selection / Dimensionality reduction for tall array

조회 수: 2 (최근 30일)
Santiago Cepeda
Santiago Cepeda 2021년 10월 22일
댓글: Santiago Cepeda 2021년 10월 29일
Hi everyone!
I work with a tall array of more than 2 M observations and about 3000 numerical predictor variables. My response variable is binary (no / yes). I would like to know how and what algorithms I can use to select (or rank) the best features to develop a predictive model.
Thanks.

답변 (1개)

Kumar Pallav
Kumar Pallav 2021년 10월 29일
Hi,
Please look at the various feature selection techniques available in Statistics and Machine Learning Toolbox. As an example, you can use fscmrmr function for classification problems. Alternatively, you can use pca to reduce the dimensionality of the feature space.
Hope this helps!
  댓글 수: 3
Kumar Pallav
Kumar Pallav 2021년 10월 29일
Hi,
As an example shown here, if 'salary' is the response variable in the table 'adultdata',you could try the following command:
[idx,scores] = fscmrmr(adultdata,'salary')
Also,the data type supported for Tbl is 'table', so that may be the reason you are not able to run the syntax directly.
Santiago Cepeda
Santiago Cepeda 2021년 10월 29일
I’m working with tall arrays so, how should I write the command?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Dimensionality Reduction and Feature Extraction에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by