We have observed that stats model s logistic regression dosent shows where as scikit learn shows intercept in model summary. if stats model dosent consider intercept while model building. How it builds model.
From my understanding while building logistic model algorithm learns beta values and intercept and create equation
Prediction = logisticfunc(B0x0 + B1x1 + B2x2 +B3x3 + . . . + Bn xn + intercept)