Confirming house ads error
Now that you've created a DataFrame that checks whether users see ads in the correct language let's calculate what percentage of users were not being served ads in the right language and plot your results.
Diese Übung ist Teil des Kurses
Analyzing Marketing Campaigns with pandas
Anleitung zur Übung
- Add a
pct
column tolanguage_check_df
which divides the count where language is correct by the row sum extracted using the.sum()
method. - Make a line plot with the date as the x-axis and the
pct
column as the y-axis and show your results.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Divide the count where language is correct by the row sum
language_check_df['pct'] = ____/____
# Plot and show your results
plt.plot(____, ____)
____