It is so strange that one of my String factors is missing in the final report.
For example, I use 3 factors:
A (Double)
B(Double)
C(String: C1, C2, C3) [category factor]
Then I run the Logistic Regression Model and generate the report.
In the report, the result of 'Coefficients' should like this:
Coefficients:
Estimate Std.Error z value Pr(>|Z|)
(Intercept)
A
B
C1
C2
C3
However, the 'C1' is missing.... The result becomes this:
Coefficients:
Estimate Std.Error z value Pr(>|Z|)
(Intercept)
A
B
C2
C3
Could someone tell me why this happens? Thank you so much!