Monthly Arrivals by Nationality & Sex

Data as of 30 Nov 2023, 23:59

Monthly foreign arrivals in Malaysia by nationality and sex.

0 views·0 downloads

Table

Arrivals

How is this data produced?

The Immigration Department of Malaysia operates the Malaysian Immigration System (MyIMMs), which is used to record arrivals and departures by air, land, and sea at all international points of entry to Malaysia. Each arrival record contains details of the individual's nationality, sex, age, and other personal or travel-related information. The dataset shown here is aggregated from the transactional data stored in MyIMMs, which is the single source of truth for movement in and out of Malaysia.

What caveats I should bear in mind when using this data?

This data does not account for unrecorded entrances into Malaysia, whether of a legal or illegal nature. It is based solely on records in MyIMMS. Furthermore, it should be noted that approximately 0.01% of arrivals do not have a nationality specified, including stateless individuals and refugees.

Publication(s) using this data

Our site features a dashboard on immigration where you can explore this data in a more interactive manner.

Metadata

Dataset description

Monthly foreign arrivals in Malaysia by nationality and sex.

Variable definitions
  • Nationality
  • Date
  • Arrivals
  • Male Arrivals
  • Female Arrivals
Last updated:

20 Dec 2023, 16:00

Next update:

31 Jan 2024, 16:00

Data source(s)
  • Imigresen
License

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.

Download

Data
Full Dataset (CSV)

Full Dataset (CSV)

Recommended for individuals seeking an Excel-friendly format.

0

Full Dataset (Parquet)

Full Dataset (Parquet)

Recommended for data scientists seeking to work with data via code.

0

Code

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/demography/arrivals.parquet' df = pd.read_parquet(URL_DATA) if 'date' in df.columns: df['date'] = pd.to_datetime(df['date']) print(df)

Sample OpenAPI query

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=arrivals&limit=3" response_json = requests.get(url=url).json() pprint.pprint(response_json)