COVID-19 Clinical Trials Dataset
Database of COVID-19 related clinical studies being conducted worldwide
@kaggle.parulpandey_covid19_clinical_trials_dataset
Database of COVID-19 related clinical studies being conducted worldwide
@kaggle.parulpandey_covid19_clinical_trials_dataset
ClinicalTrials.gov is a database of privately and publicly funded clinical studies conducted around the world. It is maintained by the National Institute of Health. All data is publicly available and the site provides a direct download feature which makes it super easy to use relevant data for analysis.
This dataset consists of clinical trials related to COVID 19 studies presented on the site.
The dataset consists of XML files where each XML file corresponds to one study. The filename is the NCT number which a unique identifier of a study in ClinicalTrials repository. Additionally, a CSV file has also been provided, which might not have as much information as contained in the XML file, but does give sufficient information.
Please refer to this notebook for details on the dataset : https://www.kaggle.com/parulpandey/eda-on-covid-19-clinical-trials
ClinicalTrials.gov is a resource provided by the U.S. National Library of Medicine.
Listing a study does not mean it has been evaluated by the U.S. Federal Government. Read our disclaimer for details.
Before participating in a study, talk to your health care provider and learn about the risks and potential benefits.
CREATE TABLE covid_clinical_trials (
"rank" BIGINT,
"nct_number" VARCHAR,
"title" VARCHAR,
"acronym" VARCHAR,
"status" VARCHAR,
"study_results" VARCHAR,
"conditions" VARCHAR,
"interventions" VARCHAR,
"outcome_measures" VARCHAR,
"sponsor_collaborators" VARCHAR,
"gender" VARCHAR,
"age" VARCHAR,
"phases" VARCHAR,
"enrollment" DOUBLE,
"funded_bys" VARCHAR,
"study_type" VARCHAR,
"study_designs" VARCHAR,
"other_ids" VARCHAR,
"start_date" VARCHAR,
"primary_completion_date" VARCHAR,
"completion_date" VARCHAR,
"first_posted" VARCHAR,
"results_first_posted" VARCHAR,
"last_update_posted" VARCHAR,
"locations" VARCHAR,
"study_documents" VARCHAR,
"url" VARCHAR
);Anyone who has the link will be able to view this.