cd_3 {qvirus} | R Documentation |
Contains longitudinal measurements of CD4 lymphocyte counts for 176 patients living with HIV, recorded over the period from 2018 to 2024. CD4 counts are a critical indicator of immune function, used to monitor the progression of HIV and the effectiveness of treatments. Measurements were taken at various points throughout the study, with some missing values due to unavailable data for specific patients at certain times.
cd_3
A data frame with 176 rows and 18 variables:
Unique identifier for each patient.
CD4 count for the first measurement in 2018.
CD4 count for the second measurement in 2018.
CD4 count for the first measurement in 2019.
CD4 count for the second measurement in 2019.
CD4 count for the first measurement in 2020.
CD4 count for the first measurement in 2021.
CD4 count for the second measurement in 2021.
CD4 count for the third measurement in 2021.
CD4 count for the first measurement in 2022.
CD4 count for the second measurement in 2022.
CD4 count for the third measurement in 2022.
CD4 count for the first measurement in 2023.
CD4 count for the second measurement in 2023.
CD4 count for the third measurement in 2023.
CD4 count for the first measurement in 2024.
CD4 count for the second measurement in 2024.
CD4 count for the third measurement in 2024.
. CD4 counts are used to monitor immune system health in individuals with HIV. A lower CD4 count often indicates a weakened immune system, whereas higher counts suggest a stronger immune response. Some values are missing, indicating no measurement was taken for a particular patient at that time.
Clinical data from Hospital Vicente Guerrero, IMSS, HIV Clinic.
# Load the dataset
data(cd_3)
# Summarize CD4 counts for the year 2021
summary(cd_3[, c("cd_2021_1", "cd_2021_2", "cd_2021_3")])