Test allocation
The email portion of this campaign was actually run as an A/B test. Half the emails sent out were generic upsells to your product while the other half contained personalized messaging around the users’ usage of the site.
Before you begin analyzing the results, you will check to ensure users were allocated equally to the test and control groups.
Este ejercicio forma parte del curso
Analyzing Marketing Campaigns with pandas
Instrucciones del ejercicio
- Isolate the rows of
marketing
where the'marketing_channel'
is'Email'
and store the results inemail
. - Group
email
by variant and sum the unique users and store the results inalloc
. - Plot the results of
alloc
in a bar chart.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Subset the DataFrame
email = ____
# Group the email DataFrame by variant
alloc = ____
# Plot a bar chart of the test allocation
____
plt.title('Personalization test allocation')
plt.ylabel('# participants')
plt.show()