1 / 62

How

How. uses. to. How to win at business. Earn X+ ε per user (Lifetime Value). Pay X to acquire a user (Cost per Acquisition). Black Box. = WIN (where n is large, and ε >0). “What am I investigating?” “Where do I start?” “What data do I use?” “How do I model my data?”

ulf
Télécharger la présentation

How

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. How uses to

  2. How to win at business Earn X+ε per user (Lifetime Value) Pay X to acquire a user (Cost per Acquisition) Black Box = WIN (where n is large, and ε>0)

  3. “What am I investigating?” • “Where do I start?” • “What data do I use?” • “How do I model my data?” • “What is the data telling me?” • “What do I do with my new insights?” • “How do I know my insights are working?”

  4. Customer Lifetime Value • How much is a user worth to me over his/her lifetime? • CLV(C,S,R) = C * S * R • C: conversion to pay • S: average transaction size • R: average number of purchases over lifetime

  5. How do we increase revenue? Conversion = # paying users / # total users Social Gaming sites usually get 1% (low) - 5% (godly)!

  6. site

  7. Welcome to OMGPOP

  8. OMGPOP is a community-centric multiplayer gaming site • Real-Time Multiplayer Games • Community Oriented • Virtual Economy

  9. We sell virtual items …And accept many forms of payment

  10. We are not a research lab • We are a venture-backed startup • Investors demand bottom-line results FAST. No credit for academic publications and citations. • Resources are SCARCE • We have to justify every minute spent on predictive analytics • How long do we spend developing, testing, and measuring X feature?” • We have weeks – not months – to show results. It needs to be immediately actionable; we make lots of assumptions

  11. “What am I investigating?” • “Where do I start?” • “What data do I use?” • “How do I model my data?” • “What is the data telling me?” • “What do I do with my new insights?” • “How do I know my insights are working?”

  12. How do we increase conversion? • Our site contains MANY features • Chat • Games • Walls • Notifications • Surveys • Pictures • Where do we focus our efforts? • Which has the greatest ROI?

  13. What causes a user to buy? • Our Guiding Mantra: • A user’s experience on the site is directly correlated with his/her probability to pay P(Buy) P(Buy’) On Site Experience Changes Before After

  14. What site experience is causing users to pay? Let’s translate into analytical questions: • “What are indicators of paying users?” • “What features are unique to paying users?” • “What unique experience do payers have that drive them to pay?” • “What features separate paying users from nonpaying users?”

  15. “What am I investigating?” • “Where do I start?” • “What data do I use?” • “How do I model my data?” • “What is the data telling me?” • “What do I do with my new insights?” • “How do I know my insights are working?”

  16. We aggregated over 100 features • gender • age • site_level • gameplays • logins_count • play_intensity • login_intensity • cents_first_purchase • number_virtual_goods_purchased • amount_on_first_purchase • ingame_items_purchased • total_coins_spent • total_coins_earned • coin_balance • number_of_friends • total_friends_invited • facebook_connected • candystand_user • aim_user • gifts_sent • gifts_received • ip_address • has_mobile_number • has_uploaded_photo • signup_date • pay_date • time_to_first_purchase_roundup • time_to_first_purchase_round • profile_items_purchased • balloono_items_purchased

  17. We were suspicious of our gender data • According to self-reported data, 80% of users were male. • So we hired a 3rd party data service to validate • And we asked every user 4 questions about their gender

  18. Our female users lie to us • 65% of women said “No, I’m not a girl” • 73% of women said “No, I’m not a woman”

  19. Our users don’t always tell the truth

  20. We can use the gender questions to build a simple predictive model Input Raw Data Set Choose label Choose classifier Train on X% of the data Test on Y% of the data Remove irrelevant features

  21. Name of the game: Train a model with the highest accuracy (confidence) Data Features ML Result Accuracy determined by data – want to remove data that doesn’t contribute relevant information (i.e. remove noise)

  22. Choosing Features 1. Intuition to choose many possible important features 2. Remove features that you can’t trust 3. Approximate Importance of features 4. Train model 5. Re-Train model on subsets of feature list and choose features that yield highest accuracy

  23. Problems Comparing Features Between Our Users • Select Features Common to payers and Nonpayers • Keep Distributions Intact • Our Experience: • Had to compare users stats right before their first purchase (behavior on site changes after first purchase) -100 Plays -20 days on site -Paid $20 -10 Plays -1 days on site -Didn’t pay

  24. How to Format the Data for Your Model

  25. Data Features Modeling Result

  26. “What am I investigating?” • “Where do I start?” • “What data do I use?” • “How do I model my data?” • “What is the data telling me?” • “What do I do with my new insights?” • “How do I know my insights are working?”

  27. What does a Classification Model do? Labeled Apples and Oranges Model ‘learns’ to classify apples and oranges Classification Model pruning, optimize parameters, weights, etc Unlabeled Fruit Classification Model % Chance of Being an Apple (or orange)

  28. Applying a Predictive Model • Purpose • We are a startup, we need quick results, interpretation, and action • Decision Tree • Pros: • Easily Understood / interpreted • Calculates Quickly • Cons • Local max only (greedy) • Less Accuracy

  29. Wine Data

  30. What is a Decision Tree?

  31. Gameplays > 100 < 100 Payers Nonpayers

  32. Purity • Measure Homogeneity of the Labels • Degree of Homogeneity is measured through: • Entropy • Gini Index • others = probability of occurence of class j in the sample

  33. Decision Tree Algorithm (simplified) • Calculate Impurity for Original Sample (probability for each ) • P(Payer) = P, P(nonpayer) = N, use relative frequencies • Entropy: -P*log(P) + -N*log(N) • **Entropy of a single label is zero ( if 1 class C, P(C) =1, thus log(1) = 0) 2. Calculate Information Gain for each possible attribute split split table -- difference in impurity measure is called the Information Gain IG= E(Original Table) – Sum_i (n * k /n * E( Feature_table_i ) 3. Choose the attribute split that results in the highest information gain 4. Remove Splitting Attribute, Recusively keep splitting on highest information gain attribute – Done when no more attributes, information gain is too tiny, or max depth of tree

  34. Calculate Impurity for Sample • P(Payer) = P, P(nonpayer) = N, use relative frequencies • Entropy: -P*log(P) + -N*log(N) • **Entropy of a single label is zero ( if 1 class C, P(C) =1, thus log(1) = 0)

  35. CALCULATE IMPURITY FOR EACH INDIVIDUAL FEATURE No Yes

  36. Decision Tree Algorithm (simplified) • Calculate Entropy for Original Table(probability for each ) • P(Payer) = P, P(nonpayer) = N, use relative frequencies • Entropy: -P*log(P) + -N*log(N) • **Entropy of a single label is zero ( if 1 class C, P(C) =1, thus log(1) = 0) 2. Take the difference in entropy between our original table and the weighted sum of the split tables -- difference in impurity measure is called the Information Gain IG= E(Original Table) – Sum_i (n * k /n * E( Feature_table_i ) 3. Choose the attribute split that results in the highest information gain 4. Keep splitting on highest information gain attributes, repeat until a certain depth of tree has been reached, or until a certain lower threshold of information gain is achieved

  37. Setting Up a Decision Tree Using RapidMiner (http://archive.ics.uci.edu/ml/datasets/Wine) Merlot Shiraz Merlot Cabernet Merlot

  38. some features • # friends • # plays • Win percentages • coins earned • Photos Uploaded • Coins spent • Purchases of different virtual items • # Plays for each game • Fill rate for each game • Game Lengths • Facebook / Myspace / aim • Gifts sent / received • Location • etc

  39. Can Use impurity for a quick ‘approximate’ ranking of feature importance for segmenting The highest information gain split, the more relevant the feature is for segmenting

  40. Ideas for what features seperated nonpaying users from paying users?

  41. Results showed four different ‘groups’ of users People who hadn’t interacted with goods or virtual currency people who got just a free virtual good people who bought 1-3 virtual goods and spent at least 1 virtual currency People who bought 7.5 + virtual items Group 1 had almost no people who spent real $$, group 4 had the most. Intuitive! The goal is then to take a smaller step and get people to interact with the virtual goods and currency from day one.

  42. total_coins_spent coin_balance gameplays Balloonogameplays number_virtual_goods_purchased SVM Weights type: C-SVC (LIBSVM) kernel: linear

  43. Data Features Modeling Result

  44. “So now what do I do? How do I take action?”

  45. Extracting Insights From The Model • Payers and Nonpayers are having different experiences! • Most people purchase at the START of their experience (seen in distribution of payers) • People who spend $$ are those who spend their virtual currency buying virtual goods

  46. We want the nonpaying user to have the same experience as the paying user

  47. Press the Button

  48. On a website… So you cant click for the user, but... You control the flows, i.e you ‘direct’ people where to click, and have HUGE INFLUENCE over what users do on your site Only one link? No where else to go.

More Related