Types of regression
Advanced Regression Models
1 Machine Learning - types of regression
- Polynomial Regression
- Censored Regression
- Tobit Regression
- Deming Regression
- Piece-wise Regression
- Interval Regression
2 Polynomial Regression
2.0.1 Polynomial Regression
Abs<-c(0.084, 0.183, 0.326, 0.464, 0.643 ,0.671,0.701)
Conc<-c(0.123, 0.288, 0.562, 0.921, 1.420,1.723,2.121)
plot(Conc,Abs)
fit1 = lm(Abs~Conc)
Conc.sq = Conc^2
fit2 = lm(Abs~Conc + Conc.sq)
summary(fit1)
summary(fit2)