| game_revenue {pointblank} | R Documentation |
A table with game revenue data
Description
This table is a subset of the sj_all_revenue table from the intendo
data package. It's the first 2,000 rows from that table where revenue records
range from 2015-01-01 to 2015-01-21.
Usage
game_revenue
Format
A tibble with 2,000 rows and 11 variables:
- player_id
A
charactercolumn with unique identifiers for each user/player.- session_id
A
charactercolumn that contains unique identifiers for each player session.- session_start
A date-time column that indicates when the session (containing the revenue event) started.
- time
A date-time column that indicates exactly when the player purchase (or revenue event) occurred.
- item_type
A
charactercolumn that provides the class of the item purchased.- item_name
A
charactercolumn that provides the name of the item purchased.- item_revenue
A
numericcolumn with the revenue amounts per item purchased.- session_duration
A
numericcolumn that states the length of the session (in minutes) for which the purchase occurred.- start_day
A
Datecolumn that provides the date of first login for the player making a purchase.- acquisition
A
charactercolumn that provides the method of acquisition for the player.- country
A
charactercolumn that provides the probable country of residence for the player.
Function ID
14-4
See Also
Other Datasets:
game_revenue_info,
small_table,
small_table_sqlite(),
specifications
Examples
# Here is a glimpse at the data
# available in `game_revenue`
dplyr::glimpse(game_revenue)