Retrieve indicators in BigQuery
- You can check the basic BigQuery usage guide here.
- After entering user input parameters and executing the sample query corresponding to each indicator, you can examine the indicator’s numerical value.
- By connecting query results to a spreadsheet, the chart function can be used to visualize indicators.
Cumulative AU, NU, NU ratio
- Cumulative AU, NU, and NU to AU ratio during the search period.
- After inputting the five user input parameters corresponding to the set, the query can be executed to verify the numbers.
- User input parameters
- yyyymmdd_1 : Search start date (YYYY-MM-DD)
- yyyymmdd_2 : Search last date (YYYY-MM-DD)
- timezone_offset : Time zone setting (time offset based on UTC – 9 for KST)
- comapny_index : Company number
- Bigquery > explorer at the top left > dataset (analytics_company number_live) under fluted-airline-109810
- appIdGroup_1: App Center registered GameID
- When entering two or more,
set appidGroup_1 = '"game1","game2"';
- When entering two or more,
- Query result
- appIdGroup : App Center registered GameID
- yyyymmdd_period : Search period
- au : Number of active users
- nu : Number of new users
- nu_rate : NU to AU ratio
- ( nu / au ) * 100
- Sample query
- User input parameters
declare yyyymmdd_1 string ; set yyyymmdd_1 = '2023-07-01';
|
Stickiness
- The ratio of average daily DAU to average AU during the search period.
- This page contains a comprehensive explanation of adhesion.
- After inputting the five user input parameters corresponding to the set, the query can be executed to verify the numbers.
- User input parameters
- yyyymmdd_1 : Search start date (YYYY-MM-DD)
- yyyymmdd_2 : Search last date (YYYY-MM-DD)
- timezone_offset : Time zone setting (time offset based on UTC – 9 for KST)
- comapny_index : Company number
- Bigquery > explorer at the top left > dataset (analytics_company number_live) under fluted-airline-109810
- appIdGroup_1: App Center registered GameID
- When entering two or more,
set appidGroup_1 = '"game1","game2"';
- When entering two or more,
- Query result
- appIdGroup : App Center registered GameID
- yyyymmdd_period : Search period
- avg_dau : Daily average DAU
- au : Number of active users
- stickiness : stickiness
- ( avg_dau / au ) * 100
- Sample query
- User input parameters
declare yyyymmdd_1 string ; set yyyymmdd_1 = '2023-07-01';
|