Machine Learning for Panel Data
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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
0 commentaires
Réponses (1)
Hiro Yoshino
le 27 Avr 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 commentaires
Hiro Yoshino
le 29 Avr 2022
Looks like you need to get yourself familiarized with the MATLAB documentation a bit more.
Let's us take https://www.mathworks.com/help/stats/fitcecoc.html#namevaluepairarguments as an example.
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.
Voir également
Catégories
En savoir plus sur Gaussian Process 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!