Reading Notes - 15 TYPES OF REGRESSION YOU SHOULD KNOW

Reading Notes : 15 TYPES OF REGRESSION YOU SHOULD KNOW

Ref: https://www.listendata.com/2018/03/regression-analysis.html

Terminologies

Mutlticollinearity

Many types of regression techniques assumes multicollinearity should not be present in the dataset. It is because it causes problems in ranking variables based on its importance. Or it makes job difficult in selecting the most important independent variable (factor).

Heteroscedasticity

When dependent variable’s variability is not equal across values of an independent variable, it is called heteroscedasticity

Types of Regression

Linear Regression

Assumptions of linear regression

Polynomial Regression

Question: Why do we not care about the multicollinearity?

Logistic Regression

Why not use linear regression here?

Odds Ratio

exponential of coefficients == odds ratio for ith explanatory variable

Logistic Regression in R

model <- glm(Lung.Cancer..Y.~Smoking..X.,data = data, family = "binomial")

Quantile Regression

(TBD)

Table of Contents