如何使用R将多项式回归集合的结果视为表格

时间:2012-08-15 23:46:48

标签: r aggregate-functions regression

从我在网上搜索到的内容,下面是我将用于对数据执行2级多项式回归的方法(这是从网上剔除的......我目前无法访问我对我的数据执行的实际命令,但我模仿了这个:)

Call:
lm(sample1$Population ~ poly(sample1$Year, 2, raw=TRUE))

Residuals:
    Min      1Q  Median      3Q     Max 
-46.888 -18.834  -3.159   2.040  86.748 

Coefficients:
                  Estimate Std. Error t value Pr(>|t|)    
(Intercept)       5263.159     17.655 298.110  < 2e-16 ***
sample1$Year        29.318      3.696   7.933 4.64e-05 ***
I(sample1$Year^2)  -10.589      1.323  -8.002 4.36e-05 ***
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 

Residual standard error: 38.76 on 8 degrees of freedom
Multiple R-squared: 0.9407,     Adjusted R-squared: 0.9259 
F-statistic: 63.48 on 2 and 8 DF,  p-value: 1.235e-05 

我的数据集是一组数据组,每组有70多行,对应于几个变量的月度数据测量。我需要计算每组数据的回归,并找出具有二阶导数的统计显着值的组。我想最终得到一个数据集,其中每个group_id包含一行,每个数据点包含一列,构成上面显示的摘要。

0 个答案:

没有答案