Machine Learning for Panel Data

4 visualizzazioni (ultimi 30 giorni)
Nick
Nick il 26 Apr 2022
Modificato: Nick il 4 Mag 2022
Can anyone please confirm whether Matlab supports machine learning methods for panel/longitudinal data?
I have not been able to find anything around trees/random forests etc.
Many thanks

Risposte (1)

Hiro Yoshino
Hiro Yoshino il 27 Apr 2022
Yes, it does.
table type variable is supported by many ML models. For example, SVM (https://jp.mathworks.com/help/stats/fitcecoc.html) accepts "Tbl" (table) as a first argument.
This is where "table" is elaborated https://jp.mathworks.com/help/matlab/tables.html
  3 Commenti
Hiro Yoshino
Hiro Yoshino il 29 Apr 2022
Looks like you need to get yourself familiarized with the MATLAB documentation a bit more.
You will see the available syntaxes as follows:
Mdl = fitcecoc(Tbl,ResponseVarName)
Mdl = fitcecoc(Tbl,formula)
Mdl = fitcecoc(Tbl,Y)
Mdl = fitcecoc(X,Y)
Mdl = fitcecoc(___,Name,Value)
[Mdl,HyperparameterOptimizationResults] = fitcecoc(___,Name,Value)
then you may want to puress the link to the "Name" & "Value" option. This option allows you to tune the model finely as you wish. In the list of this option, you'll find "PredictorNames" and "ResponseName". These are where you specify the predictors and the response respectively.
Nick
Nick il 4 Mag 2022
Modificato: Nick il 4 Mag 2022
Thank you Hiro. Apologies for being repetitive but having gone through the links I still have trouble understanding this.
In this simple example below how exactly do I add the ID variable (data.ID) in this model given this is a panel data set where there are different borrowers (i.e. different IDs) with several observations under each ID?
load RetailCreditPanelData.mat
data = data(1:1000,:);
X = data(:,[2:3,5]);
Y = data.Default;
Model1 = fitcecoc(X,Y);

Accedi per commentare.

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Prodotti


Release

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by