Top Page | Upper Page | Contents | About This Site | JAPANESE

Logistic Regression Analysis

Logistic Regression Analysis (LRA) is the analysis when Y is category data. For example, "ON" and "OFF". The name includes " Regression Analysis ". But LRA is different from the general regression analysis.

To Analyze the Figure

Logistic Regression Analysis

The figure is LRA. The curve shows the "Probability to become "ON" or "OFF". p is the probality of "OFF". 1-p is the probability of "ON".

The dot is the scatter plot of "ON" and "OFF".

Formulation

The formulation of LRA is
log (p / (1-p) ) = A1 * X1 + A2 * X2 + EEE + An * Xn + B
If we put Z as the left side of the formulation, we do the general multi-regression analysis . If we put p as the Y-axis we get the curve line.

We use "ON" and "OFF" as Y. The formulation between p and X is calculated by the Y.

By Handmade

We can do the handmade LRA.

We make sections for X. Then we calculate p for each section. And then we change p into
log (p / (1-p) )

If p is 0 or 1, we cannot change. In these cases, it is better to use 0.00000000001 or 0.999999999999 as the numbers.

After you get the number of A and B, the curve line is
p = 1 / 1 + (exp(-Z))

Data Type to Match Logistic Regression Analysis

The example is "ON" and "OFF" in this page. If the Y is the category data having opposite meaning, LRA is good to analyze.

If the Y is "Tokyo" and "Paris", even if we have two category, the phenomena include more categories. For this case, LRA is not good as analysis method.

Logistic regression analysis when there are 3 or more categories

The basis of logistic regression analysis is a two-choice question, but there are also logistic regression analysis that can handle three or more choices.

Multinomial logistic regression analysis

Multinomial logistic regression analysis is used for classification problems with three or more choices. The graph below shows the data on the left and the results of the multinomial logistic regression analysis on the right.
logistic logistic

Ordered logistic regression analysis

Ordered logistic regression analysis is when the three categories are ordinal scales such as "good, neither, bad". The graph below shows the data on the left and the results of an ordinal logistic regression analysis on the right.
logistic logistic

In ordinal logistic regression analysis, the order of the names represents the order, so for example, in the above data, changing "A" to "D" will change the resulting graph.
logistic logistic

By the way, in multinomial logistic regression analysis, changing "A" to "D" does not change the appearance of the resulting graph.
logistic logistic

software

Logistic regression analysis is included in various software for statistics and machine learning. Probit analysis can be done with R, but I don't remember seeing it with other software.

R

Logistic regression analysis by R

R-EDA1

R-EDA1 does not have items such as "logistic regression analysis" and "probit analysis", but as one of the functions of the generalized linear mixed model (GLMM) , logistic regression analysis and probit analysis can be performed. I have. In "family_link", select "binomial_logit" for logistic regression analysis and "binomial_probit" for probit analysis.

GLMM is included in each of the tools for drawing scatter plots and for examining the relationship between one variable and all other variables.
GLMM in R-EDA1 GLMM in R-EDA1



Difference of Good Distribution by Methods

Difference of Output by Methods




NEXT Support Vector Machine

Tweet