Daily COVID-19 Vaccine Registrations by State, Sex & Age

Data as of 22 Feb 2022, 23:59

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

How is this data produced?

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.

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

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.

Publication(s) using this data

Metadata

Dataset description

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.

Variable definitions
  • State
  • Date
  • Sex
  • Age
  • Registrations
Last updated:

02 Jan 2024, 09:00

Next update:

N/A

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

Sample OpenAPI query

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.