Machine Learning voor marketing in Python
Karolis Urbonas
Head of Analytics & Science, Amazon
Bepaal de target (afhankelijke variabele of Y) – wat willen we voorspellen?
Verzamel features (onafhankelijke variabelen of X) met voorspellende kracht:
| Feature 1 | Feature 2 | ... | Feature N | Target Y |
|---|---|---|---|---|
| 11 | 21 | N1 | Y1 | |
| 12 | 22 | N2 | Y2 |
Verzamel gebruiks- of aankoopdata en voer een model uit om homogene groepen te vinden, d.w.z. clusters of segmenten:
| Feature 1 | Feature 2 | ... | Feature N |
|---|---|---|---|
| 11 | 21 | N1 | |
| 12 | 22 | N2 |
Machine Learning voor marketing in Python