Daily registrations for the COVID-19 vaccine via MySejahtera, at national and state level, broken down by age group and sex. The table below provides a truncated preview of the full dataset.
0 views·0 downloads
This data was tabulated from 1 year's worth of anonymised individual-level registrations for the COVID-19 vaccine via MySejahtera, i.e. from the date that registrations first opened (23 Feb 2021) until 1 year later (22 Feb 2022). A small minority of records (< 0.01%) with null ages and sex were dropped from the dataset.
This data does not include individuals who registered via the website (vaksincovid.gov.my, now deprecated) or call centre. Although those registrations were used operationally during the program, they were intentionally excluded from this dataset due to the extremely high duplication of registrations via MySejahtera versus those two modalities. Furthermore, it should be noted that the individual's state was self-declared and unverified, and may therefore be different from the individual's state of residence, or even the state where they eventually received their vaccine. Therefore, appropriate caution should be applied when comparing registration data to actual vaccination throughput or population data.
—
Daily registrations for the COVID-19 vaccine via MySejahtera, at national and state level, broken down by age group and sex. The table below provides a truncated preview of the full dataset.
Name in Dataset | Variable | Definition |
---|---|---|
state (Categorical) | State | One of 16 states, or Malaysia |
date (Date) | Date | Date in YYYY-MM-DD format |
sex (Categorical) | Sex | Male or female |
age (Categorical) | Age | Five-year age groups (e.g. 25-29, 30-34, 35-39), with special categories for children (0-11), adolescents (12-17) and young adults (18-24). 85+ is the oldest category. |
registrations (Integer) | Registrations | Number of individuals who registered via MySejahtera |
02 Jan 2024, 09:00
N/A
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.data.gov.my/healthcare/vaxreg_covid_demog.parquet'
df = pd.read_parquet(URL_DATA)
if 'date' in df.columns: df['date'] = pd.to_datetime(df['date'])
print(df)
This data catalog is not available through OpenAPI as the nature of the data makes it unsuitable for API access. For the full dataset, please use the provided download link as shown in the above section.
© 2024 Ministry of Health Malaysia