Transactional data on the user reviews of government mobile applications
0 views·0 downloads
Under the standards specified by the National Digital Department (JDN), all government mobile applications must be registered with the Malaysia Government Mobile Applications Gallery (GAMMA). This dataset represents an exact copy of the transactional data on user reviews stored in the GAMMA database.
The data represents applications tracked via the Malaysia Government Mobile Applications Gallery (GAMMA) only. As such, official applications not yet registered in GAMMA may be absent from this dataset.
—
Transactional data on the user reviews of government mobile applications
Name in Dataset | Variable | Definition |
---|---|---|
id (Integer) | Application ID | Unique identifier for each government mobile application; this can be matched against the app_id field in the main dataset. |
app_name (String) | Application Name | The official name of the government mobile application. |
app_os_platform (Categorical) | Operating System Platform | The OS platform on which the review was submitted: Android, iOS, or Huawei. |
review (String) | User Review | User-submitted review text for the application. May be empty if no review was provided. |
created_date (Timestamp) | Date | The timestamp when the review was submitted. |
star_rating (Integer) | Star Rating | The star rating given by the user, ranging from 1 to 5 stars. -1 indicates ratings without a star value. |
10 Sept 2025, 02:00
11 Sept 2025, 02:00
This data is made open under the Creative Commons Attribution 4.0 International License (CC BY 4.0). A copy of the license is available Here.
Full Dataset (CSV)
Recommended for individuals seeking an Excel-friendly format.
0
Full Dataset (Parquet)
Recommended for data scientists seeking to work with data via code.
0
Connect directly to the data with Python.
# If not already installed, do: pip install pandas fastparquet
import pandas as pd
URL_DATA = 'https://storage.data.gov.my/publicadmin/government_apps_reviews.parquet'
df = pd.read_parquet(URL_DATA)
if 'date' in df.columns: df['date'] = pd.to_datetime(df['date'])
print(df)
The following code is an example of how to make an API query to retrieve the data catalogue mentioned above. You can use different programming languages by switching the code accordingly. For a complete guide on possible query parameters and syntax, please refer to the official Open API Documentation.
import requests
import pprint
url = "https://api.data.gov.my/data-catalogue?id=government_apps_reviews&limit=3"
response_json = requests.get(url=url).json()
pprint.pprint(response_json)
© 2025 Public Sector Open Data