Ajout fusions

This commit is contained in:
Antoine JOUBREL 2024-02-10 18:57:33 +00:00
parent 5f02915ae9
commit 05538d3490

View File

@ -3172,16 +3172,6 @@
"df1_customer = pd.merge(df1_customerplus_clean, df1_campaigns_kpi, on = 'customer_id', how = 'left')"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "9740d64a-e5eb-4967-a534-ca6177546465",
"metadata": {},
"outputs": [],
"source": [
"df1_customer.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
@ -3190,7 +3180,7 @@
"outputs": [],
"source": [
"# Fusion avec KPI liés au comportement d'achat\n",
"# df1_customer_product = pd.merge(df1_products_purchased_reduced, df1_products_purchased, on = 'customer_id', how = 'outer')"
"df1_customer_product = pd.merge(df1_tickets_kpi, df1_customer, on = 'customer_id', how = 'outer')"
]
},
{