1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| par(mfrow=c(1,1))
> plot(epB,epA)
> reg.simple = lm(epB~epA,data=epreuve)
> summary(reg.simple)
Call:
lm(formula = epB ~ epA, data = epreuve)
Residuals:
Min 1Q Median 3Q Max
-7.6092 -2.8339 0.1463 2.2344 6.5780
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 11.9903 3.1307 3.830 0.00332 **
epA 0.1079 0.3352 0.322 0.75408
---
Signif. codes: 0 *** 0.001 ** 0.01 * 0.05 . 0.1 1
Residual standard error: 4.278 on 10 degrees of freedom
Multiple R-squared: 0.01026, Adjusted R-squared: -0.08871
F-statistic: 0.1037 on 1 and 10 DF, p-value: 0.7541
> abline(reg.simple)
> par(mfrow=c(1,1))
> plot(epB,epA)
>
> reg.simple = lm(epB~epA,data=epreuve);reg.simple
Call:
lm(formula = epB ~ epA, data = epreuve)
Coefficients:
(Intercept) epA
11.9903 0.1079
> summary(reg.simple)
Call:
lm(formula = epB ~ epA, data = epreuve)
Residuals:
Min 1Q Median 3Q Max
-7.6092 -2.8339 0.1463 2.2344 6.5780
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 11.9903 3.1307 3.830 0.00332 **
epA 0.1079 0.3352 0.322 0.75408
---
Signif. codes: 0 *** 0.001 ** 0.01 * 0.05 . 0.1 1
Residual standard error: 4.278 on 10 degrees of freedom
Multiple R-squared: 0.01026, Adjusted R-squared: -0.08871
F-statistic: 0.1037 on 1 and 10 DF, p-value: 0.7541
> abline(reg.simple) |
Partager