Annual gross domestic product (GDP) at current prices, by income component.
0 viewsΒ·0 downloads
Gross domestic product (GDP) is the total value of goods and services produced within that year, after deducting the cost of goods and services used in production, but before deducting the consumption of fixed capital. In Malaysia, GDP is estimated in compliance with the System of National Accounts (2008).
In general, GDP can be measured via 3 approaches, namely production, expenditure, and income. Because the measurement employs double entry accounting, the overall value must be the same across all 3 approaches. However, the different approaches allow GDP to be analysed in different ways. The GDP estimates in this dataset were produced using the income method, which allows insight into who is earning the income generated by the Malaysian economy; employees, companies, or the government (via net taxes). The values were measured at current prices, i.e. without removing price effects. For a full description of the methodology, please refer to the Technical Notes.
Values for 2021 and 2022 may be revised in future releases. Furthermore, the sum of GDP for all income components may not always equal to the values for overall GDP because of independent rounding to one decimal place. However, the differences are not obvious.
Gross Domestic Product (Income Approach), 2022, the latest edition of the annual income-approach GDP statistics published by DOSM. OpenDOSM also features a dashboard on GDP which enables you to explore Malaysia's GDP data interactively.
Annual gross domestic product (GDP) at current prices, by income component.
Name in Dataset | Variable | Definition |
---|---|---|
series (String) | Series Type | Series type, either absolute values ('abs') or annual growth ('growth_yoy') |
date (Date) | Date | The date in YYYY-MM-DD format, with MM-DD set to 01-01 as the data is at annual frequency |
type (String) | Expenditure Type | Code for the income component, to be mapped using the Lookup Table. The lookup table will give you the English and Malay definitions. |
value (Float) | Value | Either the value of GDP in RM millions (for rows with series type 'abs') or GDP growth as a percentage (for rows with series type 'growth_yoy') |
26 Jul 2023, 12:00
25 Jul 2024, 12: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.dosm.gov.my/gdp/gdp_annual_nominal_income.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=gdp_annual_nominal_income&limit=3"
response_json = requests.get(url=url).json()
pprint.pprint(response_json)
Β© 2024 Public Sector Open Data