fitlm when there are many independent variables

3 Ansichten (letzte 30 Tage)
alpedhuez
alpedhuez am 13 Dez. 2020
Beantwortet: Image Analyst am 14 Dez. 2020
shows, when one has a small number of independent variables, it is possible to have an output table with variables are named with its orginal name intead of x1, x2,... But, in my case, there are like 20 independent variables, and it is a bit cumbersome to write all the variable names. Then, how can one get the output table of the form
Estimate Coefficients
Estimate SE Tstat pValue
---------------------------------------
(Intercept)
January
February
March
...

Antworten (1)

Image Analyst
Image Analyst am 14 Dez. 2020
Use the 'VariableNames' option of table(). Writing 20 names into a cell array is not cumbersome. Some of my programs have thousands of lines.
t = table(v1, v2, v3, v4, 'VariableNames', {'Jan', 'Feb', 'Mar', 'Apr'}); % Modify to include all 20 variables.
Attach your data if you still have trouble.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by