Daily Blood Donations by Blood Group & State

Data as of 06 Sept 2024, 23:59

Daily blood donations at state level for each of the 4 major blood groups. The table provides a preview of the dataset using the most recent year of data.

0 views·0 downloads

Table

Daily Donations

How is this data produced?

This dataset is produced from transactional data recorded in the Blood Bank Information System (BBISv2), a vein-to-vein blood-tracking system used by 22 main blood collection sites under MoH which covers the majority of blood donations in Malaysia.

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

The true number of daily blood donations is higher than the number recorded in this dataset, which does not reflect donations made at locations other than the 22 main sites integrated with BBISv2. However, the 22 main sites cover the large majority of blood donations in Malaysia (~80%), and therefore provide a representative view of blood donation trends. Furthermore, it should be noted that:

  • The data for W.P. Kuala Lumpur includes all donations made in W.P. Putrajaya, and all donations made at mobile campaigns (e.g. at shopping malls, universities, stadiums, etc) around Selangor. Accordingly, analysis of blood donor rates by state should treat the Klang Valley as a single group comprising 3 states.
  • Data for Perlis and W.P. Labuan is not available for now, because there are no blood donation centres in those states integrated with BBISv2 yet.

Publication(s) using this data

KKMNOW features a dashboard on blood donation where you can explore the data in a more interactive manner!

Metadata

Dataset description

Daily blood donations at state level for each of the 4 major blood groups. The table provides a preview of the dataset using the most recent year of data.

Variable definitions
  • Date
  • State
  • Blood Type
  • Blood Donations
Last updated:

07 Sept 2024, 10:00

Next update:

08 Sept 2024, 10:00

Data source(s)
  • PDN
  • MOH
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/healthcare/blood_donations_state.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=blood_donations_state&limit=3" response_json = requests.get(url=url).json() pprint.pprint(response_json)