Skip to content

Instantly share code, notes, and snippets.

@Zmey56
Created June 28, 2022 19:22
Show Gist options
  • Save Zmey56/d290535554c415d934c30a1226f15fd2 to your computer and use it in GitHub Desktop.
Save Zmey56/d290535554c415d934c30a1226f15fd2 to your computer and use it in GitHub Desktop.
# Rewarded Videos Ads Watched
rvaw = game[['A', 'B']][:642]
# Interstitial Ads Watched
iaw = game[['A.1', 'B.1']][:839]
iaw.columns = ['A', 'B']
# User Progress Level
upl = game[['A.2', 'B.2']][:2115]
upl.columns = ['A', 'B']
# Daily Session Number
dsn = game[['A.3', 'B.3']][:20]
dsn.columns = ['A', 'B']
# Session Duration (in seconds)
sd = game[['A.4', 'B.4']][:2540]
sd.columns = ['A', 'B']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment