Last active
May 3, 2019 20:30
-
-
Save karamanbk/092fcd03b24cf7279e132d60f8718af3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#calculate overall score and use mean() to see details | |
tx_user['OverallScore'] = tx_user['RecencyCluster'] + tx_user['FrequencyCluster'] + tx_user['RevenueCluster'] | |
tx_user.groupby('OverallScore')['Recency','Frequency','Revenue'].mean() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment