Annual Productivity by Economic Sector

Data as of 2024

Annual labour productivity by economic sector, with metrics on value added per worker, value added per hour worked, and total hours worked.

0 viewsΒ·0 downloads

Table

Output per Hour Worked

Output per Worker

How is this data produced?

Labour productivity is primarily measured using two metrics:

  • Value added per worker: Calculated by dividing GDP at constant prices (to strip out the effects of inflation) for a particular time period, by the number of workers in that period.
  • Value added per hour worked: Calculated by dividing GDP at constant prices for a particular time period, by the total hours worked in that period.

In short, labour productivity is a derived indicator which draws from national statistics on GDP and the labour force. For a deeper understanding of the compilation methodology and related concepts, please refer to the Technical Notes.

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

Although these indicators are classified as measures of labour productivity, the definitions provided above make it clear that they do not refer to any notion of intrinsic labour capacity. In technical terms, the measures presented here are Single Factor Productivity measures, which implicitly include the contributions of all other factors of production. Consequently, this data should not be used for inference on how 'hardworking' or 'skilled' the Malaysian labour force is - more precise data is needed for such analysis.

Furthermore, note that data for the most recent 3 years may be revised in subsequent releases. This is especially to ensure consistency with revisions to GDP data, since GDP serves as the numerator in calculation of labour productivity metrics.

Publication(s) using this data

Labour Productivity, 4Q 2024, the latest edition of the quarterly labour productivity statistics published by DOSM. OpenDOSM also features a dashboard on labour productivity where you can explore this data in a more interactive manner.

Metadata

Dataset description

Annual labour productivity by economic sector, with metrics on value added per worker, value added per hour worked, and total hours worked.

Variable definitions
  • Series Type
  • Economic Sector
  • Date
  • GDP
  • Hours Worked
  • Employment
  • Output per Hour
  • Output per Worker
Last updated:

20 Feb 2025, 12:00

Next update:

20 Feb 2026, 12:00

Data source(s)
  • Department of Statistics Malaysia
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.dosm.gov.my/labour/productivity_annual.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=productivity_annual&limit=3" response_json = requests.get(url=url).json() pprint.pprint(response_json)