Commit 390c0aa0 authored by Emmanuel Guiffart's avatar Emmanuel Guiffart

finalement un degré 2 suffit

parent 32e9d3af
......@@ -109,7 +109,7 @@ reg_lin_log<-lm(MA~log(Yr),data=MA)
summary(reg_lin_log)
plot(reg_lin_log)
reg_lin<-lm(MA~Yr+I(Yr^2)+I(Yr^3),data=MA)
reg_lin<-lm(MA~Yr+I(Yr^2),data=MA)
summary(reg_lin)
plot(reg_lin)
tail(predict(reg_lin))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment