用于购买预测的数据准备

Python 营销中的机器学习

Karolis Urbonas

Head of Analytics & Science, Amazon

回归:预测连续变量

  • 回归:监督学习的一种
  • 目标变量:连续型或计数型
  • 最简单:线性回归
  • 计数数据(如活跃天数)常用 Poisson 或负二项回归更佳
Python 营销中的机器学习

RFM 特征:新近度、频率、金额

  • RFM:支撑多种特征工程的方法
  • 新近度(Recency):距上次交易的时间
  • 频率(Frequency):观测期内的购买次数
  • 金额(Monetary):观测期内总花费
Python 营销中的机器学习

按月查看销售分布

# Explore monthly distribution of observations
online.groupby(['InvoiceMonth']).size()
InvoiceMonth
2010-12    4893
2011-01    3580
2011-02    3648
2011-03    4764
2011-04    4148
2011-05    5018
2011-06    4669
2011-07    4610
2011-08    4744
2011-09    7189
2011-10    8808
2011-11    9513
dtype: int64
Python 营销中的机器学习

分离特征数据

# Exclude target variable
online_X = online[online['InvoiceMonth']!='2011-11']

# Define snapshot date NOW = dt.datetime(2011,11,1)
# Build the features features = online_X.groupby('CustomerID').agg({ 'InvoiceDate': lambda x: (NOW - x.max()).days, 'InvoiceNo': pd.Series.nunique, 'TotalSum': np.sum, 'Quantity': ['mean', 'sum'] }).reset_index()
features.columns = ['CustomerID', 'recency', 'frequency', 'monetary', 'quantity_avg', 'quantity_total']
Python 营销中的机器学习

查看特征

print(features.head())

特征表头

Python 营销中的机器学习

计算目标变量

# Build pivot table with monthly transactions per customer
cust_month_tx = pd.pivot_table(data=online, index=['CustomerID'], 
                               values='InvoiceNo',
                               columns=['InvoiceMonth'],
                               aggfunc=pd.Series.nunique, fill_value=0)
print(cust_month_tx.head())

客户-月份透视表

Python 营销中的机器学习

完成数据准备并划分训练/测试集

# Store identifier and target variable column names
custid = ['CustomerID']
target = ['2011-11']

# Extract target variable Y = cust_month_tx[target]
# Extract feature column names cols = [col for col in features.columns if col not in custid]
# Store features X = features[cols]
Python 营销中的机器学习

划分训练集与测试集

# Randomly split 25% of the data to testing
from sklearn.model_selection import train_test_split
train_X, test_X, train_Y, test_Y = train_test_split(X, Y, 
                                                    test_size=0.25, 
                                                    random_state=99)

# Print shapes of the datasets print(train_X.shape, train_Y.shape, test_X.shape, test_Y.shape)
(2529, 5) (2529, 1) (843, 5) (843, 1)
Python 营销中的机器学习

现在进行数据准备练习!

Python 营销中的机器学习

Preparing Video For Download...