This table contains metadata for the game_revenue
table. The first column
(named column
) provides the column names from game_revenue
. The second
column (info
) contains descriptions for each of the columns in that
dataset. This table is in the correct format for use in the
info_columns_from_tbl()
function.
Format
A tibble with 11 rows and 2 variables:
- column
A
character
column with unique identifiers for each user/player.- info
A
character
column that contains unique identifiers for each player session.
See also
Other Datasets:
game_revenue
,
small_table
,
small_table_sqlite()
,
specifications
Examples
# Here is a glimpse at the data
# available in `game_revenue_info`
dplyr::glimpse(game_revenue_info)
#> Rows: 11
#> Columns: 2
#> $ column <chr> "player_id", "session_id", "session_start", "time", "item_type"…
#> $ info <chr> "A `character` column with unique identifiers for each user/pla…