Overall balance of the 4 main components of Malaysia's balance of payments (BOP).
0 viewsΒ·0 downloads
In general, Malaysia's balance of payments (BOP) record all international economic transactions between Malaysia and other nations. This dataset presents the overall balance of the main components of Malaysia's BOP, that is the current account, capital account, financial account, and official reserve account. It is compiled based on the IMF's BPM6 guidelines. For a full description of the methodology, please refer to the Technical Notes.
Values for the most recent 8 quarters may be revised in future releases.
Balance of Payments, 2Q 2024, the latest edition of the quarterly BOP statistics published by DOSM. OpenDOSM also features a dashboard on BOP which enables you to explore Malaysia's BOP data interactively.
Overall balance of the 4 main components of Malaysia's balance of payments (BOP).
Name in Dataset | Variable | Definition |
---|---|---|
date (Date) | Date | The date in YYYY-MM-DD format. The earliest date in the quarter is chosen, e.g. YYYY-01-01 for the 1st quarter and YYYY-04-01 for the 2nd quarter. |
account (Categorical) | Component | The type of account in the balance of payments: Current Account ('ca'), Capital Account ('ka'), Financial Account ('fa'), Official Reserve Account ('reserves'), or Net Errors and Omissions ('neo'). |
balance (Float) | Balance (RM mil) | The balance in RM millions. These are net values, derived by subtracting debits from credits for that account. |
15 Nov 2024, 12:00
14 Feb 2025, 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/bop/bop_balance.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=bop_balance&limit=3"
response_json = requests.get(url=url).json()
pprint.pprint(response_json)
Β© 2024 Public Sector Open Data