Skip to content

Commit

Permalink
Update MAM.py
Browse files Browse the repository at this point in the history
styles mistake correction
  • Loading branch information
MaximumV authored Nov 25, 2024
1 parent 72933d9 commit 03a836e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion marketing_attribution_models/MAM.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
import pandas as pd
import seaborn as sns

plt.style.use("seaborn-white")
if "seaborn-white" in plt.style.available:
plt.style.use("seaborn-white")
else:
plt.style.use("default")


class MAM:
Expand Down

0 comments on commit 03a836e

Please sign in to comment.