Multi linear regressoin with categorical variables

3 ビュー (過去 30 日間)
In-chan Kim
In-chan Kim 2020 年 7 月 16 日
コメント済み: Aditya Patil 2020 年 8 月 17 日
I want to run a multivariate linear regression with categorical variables.
My coding for mono with categorical works, as does multi with not categorical variables. I'm trying to figure out what the problem is!
% Doesn't work, needs fixing - Multivariate with categorical variables
mdllinallscenarioparams = fitlm(scenario{:,scenarioparams(4:5)},scenario.mean_benefitpercent,'CategoricalVars',[1:2],'VarNames',{'intgsystem','V2G','mean_benefitpercent'});
% Works, mono with categorical
mdllinallscenarioparams = fitlm(scenario{:,scenarioparams(4)},scenario.mean_benefitpercent,'CategoricalVars',[1],'VarNames',{'intgsystem','mean_benefitpercent'});
% Works, multi with not categorical
mdllinallscenarioparams = fitlm(scenario{:,scenarioparams(12:13)},scenario.mean_benefitpercent,'CategoricalVars',[1:2],'VarNames',{'PV','ESS','mean_benefitpercent'});
  1 件のコメント
Aditya Patil
Aditya Patil 2020 年 8 月 17 日
Can you provide more information, such as the complete code and the error that you are receiving?

サインインしてコメントする。

回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by