AIDS Clinical Trials Group Study 175 Dataset
Decoding AIDS Treatments: A Randomized, Double-Blind Phase II/III Trial
@kaggle.tanshihjen_aids_clinical_trials
Decoding AIDS Treatments: A Randomized, Double-Blind Phase II/III Trial
@kaggle.tanshihjen_aids_clinical_trials
Overview:
The AIDS Clinical Trials Group Study 175 Dataset, initially published in 1996, is a comprehensive collection of healthcare statistics and categorical information about patients diagnosed with AIDS. This dataset was created with the primary purpose of examining the performance of two different types of AIDS treatments: zidovudine (AZT) versus didanosine (ddI), AZT plus ddI, and AZT plus zalcitabine (ddC). The prediction task associated with this dataset involves determining whether each patient died within a specified time window.
Dataset Details:
Purpose of Dataset Creation:
The dataset was created to evaluate the efficacy and safety of various AIDS treatments, specifically comparing the performance of AZT, ddI, and ddC in preventing disease progression in HIV-infected patients with CD4 counts ranging from 200 to 500 cells/mm3. This intervention trial aimed to contribute insights into the effectiveness of monotherapy versus combination therapy with nucleoside analogs.
Funding Sources:
The creation of this dataset was funded by:
Instance Representation:
Each instance in the dataset represents a health record of a patient diagnosed with AIDS in the United States. These records encompass crucial categorical information and healthcare statistics related to the patient's condition.
Study Design:
Study Objectives:
To determine the effectiveness and safety of different AIDS treatments, including AZT, ddI, and ddC, in preventing disease progression among HIV-infected patients with specific CD4 cell counts.
Additional Information:
The dataset provides valuable insights into the HIV-related clinical trials conducted by the AIDS Clinical Trials Group, contributing to the understanding of treatment outcomes and informing future research in the field.
Attributes Description:
Original Dataset Website:
https://classic.clinicaltrials.gov/ct2/show/NCT00000625
Image Source:
Image by Freepik
CREATE TABLE aids_clinicaltrial_groupstudy175 (
"time" BIGINT,
"trt" BIGINT,
"age" BIGINT,
"wtkg" DOUBLE,
"hemo" BIGINT,
"homo" BIGINT,
"drugs" BIGINT,
"karnof" BIGINT,
"oprior" BIGINT,
"z30" BIGINT,
"zprior" BIGINT,
"preanti" BIGINT,
"race" BIGINT,
"gender" BIGINT,
"str2" BIGINT,
"strat" BIGINT,
"symptom" BIGINT,
"treat" BIGINT,
"offtrt" BIGINT,
"cd40" BIGINT,
"cd420" BIGINT,
"cd80" BIGINT,
"cd820" BIGINT,
"label" BIGINT
);
Anyone who has the link will be able to view this.