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
character
column with unique identifiers for each user/player.- session_id
A
character
column 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
character
column that provides the class of the item purchased.- item_name
A
character
column that provides the name of the item purchased.- item_revenue
A
numeric
column with the revenue amounts per item purchased.- session_duration
A
numeric
column that states the length of the session (in minutes) for which the purchase occurred.- start_day
A
Date
column that provides the date of first login for the player making a purchase.- acquisition
A
character
column that provides the method of acquisition for the player.- country
A
character
column 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)