Mô hình Tuyến tính Tổng quát (GLM) trong Python
Ita Cirovic Donev
Data Science Consultant
Sau khi khớp mô hình

Sau khi khớp mô hình
Giá trị khớp cho các giá trị $x$ gốc
Giá trị $x$ mới để tính giá trị dự đoán

Mô hình cua móng ngựa y ~ weight
$$
\mu = \frac{\exp(-3.6947+1.8151 \times weight)}{1+\exp(-3.6947+1.8151 \times weight)}
$$
Đo mới: weight = 2.85
$$ \mu = \frac{\exp(-3.6947+1.8151 \times \color{blue}{2.85})}{1+\exp(-3.6947+1.8151 \times \color{blue}{2.85})} = 0.814 $$
new_data# Compute model predictions
model_GLM.predict(exog = new_data)

# Extract fitted probabilities from model
crab['fitted'] = model.fittedvalues.values
# Define cut-off value
cut_off = 0.4
# Compute class predictions
crab['pred_class'] = np.where(crab['fitted'] > cut_off, 1, 0)
# Count occurences for each class
crab['pred_class'].value_counts()
1 151
0 22
| Ngưỡng | $\hat y=1$ | $\hat y=0$ |
|---|---|---|
| $\mu = 0.4$ | 151 | 22 |
| $\mu = 0.5$ | 126 | 47 |





print(pd.crosstab(y_actual, y_predicted,
rownames=['Actual'], colnames=['Predicted'],
margins = True))
Predicted 0 1 All
Actual
0 15 47 62
1 7 104 111
All 22 151 173
Mô hình Tuyến tính Tổng quát (GLM) trong Python