在R中的回归输出中显示类别标签

时间:2018-04-20 14:20:32

标签: r

使用这个Demo我发现模型输出的格式与文本中提供的格式非常不同,我不能为我的生活找出原因。例如,这是代码:

pitch = c(233,204,242,130,112,142)
sex = c(rep("female",3),rep("male",3))
my.df = data.frame(sex,pitch)
xmdl = lm(pitch ~ sex, my.df)
summary(xmdl)

以下是我得到的输出:

Call:
lm(formula = pitch ~ sex, data = my.df)

Residuals:
      1       2       3       4       5       6 
  6.667 -22.333  15.667   2.000 -16.000  14.000 

Coefficients:
            Estimate Std. Error t value Pr(>|t|)    
(Intercept)  177.167      7.201  24.601 1.62e-05 ***
sex1          49.167      7.201   6.827  0.00241 ** 
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

Residual standard error: 17.64 on 4 degrees of freedom
Multiple R-squared:  0.921, Adjusted R-squared:  0.9012 
F-statistic: 46.61 on 1 and 4 DF,  p-value: 0.002407

在教程中,Coefficients的行有“sexmale”而不是“sex1”。为实现此目的,我需要激活哪些设置?

0 个答案:

没有答案