Annual principal labour force statistics by sex, including unemployment and participation rates.
0 views·0 downloads
This data is produced based on the Labour Force Survey (LFS), which is designed to collect representative data on the labour force at national and state level. Consistency in methodology has been maintained to ensure that the data is comparable over time. Survey findings are a monthly, quarterly and annual basis. For a full description of the methodology, please refer to the Technical Notes.
Data for 1991 and 1994 are not available due to limitations in the sample data from those years. Furthermore, the sum of each category may not always equal to the totals shown in related tables because of independent rounding to one decimal place. However, the differences are not obvious.
The Labour Force Report, 2023, the latest edition of the annual labour force statistics published by DOSM. OpenDOSM also features a dashboard on the labour force.
Annual principal labour force statistics by sex, including unemployment and participation rates.
Name in Dataset | Variable | Definition |
---|---|---|
sex (Categorical) | Sex | Either both sexes ('both'), male ('male') or female ('female') |
date (Date) | Date | The date in YYYY-MM-DD format, with MM-DD set to 01-01 since the data is at annual frequency |
lf (Float, '000) | Labour Force Size | The number (in thousands) of employed and unemployed individuals. This figure also represents the number of people participating in the labour force. |
lf_employed (Float, '000) | Employed Persons | The number (in thousands) of people who worked at least one hour for pay, profit or family gain, in thousands of people |
lf_unemployed (Float, '000) | Unemployed Persons | The number (in thousands) of people who did not work but were looking for work or available to work |
lf_outside (Float, '000) | Persons outside Labour Force | The number (in thousands) of people not classified as employed or unemployed, including housewives, students, early retired, disabled persons and those not interested in looking for a job |
u_rate (Float) | Unemployment Rate | Ratio of unemployed to labour force size |
p_rate (Float) | Participation Rate | Ratio of the labour force size to the working-age (15-64) population |
ep_ratio (Float) | Employment-Population Ratio | Ratio of the number of employed people to the working-age (15-64) population |
09 Feb 2024, 12:00
09 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/labour/lfs_year_sex.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=lfs_year_sex&limit=3"
response_json = requests.get(url=url).json()
pprint.pprint(response_json)
Department of Statistics Malaysia
© 2024 Public Sector Open Data
Open Data
data.gov.my