Gebruik van evolutievariabelen

Gevorderde voorspellende analyse in Python

Nele Verbiest

Senior Data Scientist @PythonPredictions

Voorspelmodellen bouwen

# Import the linear_model module
from sklearn import linear_model

# Predictive variables variables = ["gender","age", "donations_last_year", "ratio_month_year"]
# Select predictors and target X = basetable[variables] y = basetable[["target"]]
# Construct the logistic regression model logreg = linear_model.LogisticRegression() logreg.fit(X, y)
Gevorderde voorspellende analyse in Python

Voorspellingen maken

# Import the linear_model module
from sklearn import linear_model

# Predictive variables variables = ["gender","age", "donations_last_year", "ratio_month_year"]
# Select predictors and target X = basetable[variables] y = basetable[["target"]]
# Construct the logistic regression model logreg = linear_model.LogisticRegression() logreg.fit(X, y)
# Make predictions
predictions = logreg.predict_proba(X)[:,1]
Gevorderde voorspellende analyse in Python

Voorspelmodellen evalueren met AUC

# Discretize the variable in 5 bins and add to the basetable
basetable["ratio_month_year_disc"] = pd.qcut(basetable["ratio_month_year"], 5)

# Construct the predictor insight graph table pig_table = create_pig_table(basetable, "target","ratio_month_year_disc") ```{python} # Plot the predictor insight graph plot_pig(pig_table, "ratio_month_year_disc")
Gevorderde voorspellende analyse in Python

De predictor insight graph

# Discretize the variable in 5 bins and add to the basetable
basetable["ratio_month_year_disc"] = pd.qcut(basetable["ratio_month_year"], 5)

# Construct the predictor insight graph table pig_table = create_pig_table(basetable, "target","ratio_month_year_disc") ```{python} # Plot the predictor insight graph plot_pig(pig_table, "ratio_month_year_disc")
Gevorderde voorspellende analyse in Python

Interpretatie van de predictor insight graph

Gevorderde voorspellende analyse in Python

Laten we oefenen!

Gevorderde voorspellende analyse in Python

Preparing Video For Download...