fitlm when there are many independent variables

조회 수: 2 (최근 30일)
alpedhuez
alpedhuez 2020년 12월 13일
답변: Image Analyst 2020년 12월 14일
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
...

답변 (1개)

Image Analyst
Image Analyst 2020년 12월 14일
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.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by