medical_research_data: General Medical Research Data

medical_research_dataR Documentation

General Medical Research Data

Description

A comprehensive simulated dataset for general medical research, including patient demographics, visit information, clinical measurements, lab results, and various health scores. This dataset is structured to represent data collected over multiple visits for some patients.

Usage

data(medical_research_data)

Format

A data frame with 890 rows and 32 variables:

PatientID

Character. Unique patient identifier.

VisitNumber

Integer. The sequential number of the patient's visit.

VisitDate

Character. Date of the visit. Should ideally be parsed as Date.

StudyCenter

Character. Identifier for the study center or hospital.

AgeGroup

Character. Categorized age group of the patient.

Gender

Character. Gender of the patient.

TreatmentGroup

Character. Assigned treatment group (e.g., "Treatment A", "Control").

DiagnosisPrimary

Character. Primary diagnosis for the patient.

DiseaseStage

Character. Stage of the primary disease.

ComorbidityCount

Integer. Number of comorbidities.

BMICategory

Character. Body Mass Index category (e.g., "Underweight", "Normal", "Overweight").

SystolicBP

Integer. Systolic blood pressure (mmHg).

DiastolicBP

Integer. Diastolic blood pressure (mmHg).

HeartRate

Integer. Heart rate (beats per minute).

Temperature

Numeric. Body temperature (e.g., Celsius or Fahrenheit).

RespiratoryRate

Integer. Respiratory rate (breaths per minute).

OxygenSaturation

Integer. Oxygen saturation (SpO2, percent).

HbA1c

Numeric. Glycated hemoglobin level (%).

Creatinine

Numeric. Creatinine level (e.g., mg/dL or µmol/L).

eGFR

Integer. Estimated Glomerular Filtration Rate.

Hemoglobin

Numeric. Hemoglobin level (e.g., g/dL).

WBC

Numeric. White Blood Cell count (e.g., cells/µL).

Platelets

Integer. Platelet count (e.g., cells/µL).

TotalCholesterol

Integer. Total cholesterol level (e.g., mg/dL).

LDLCholesterol

Integer. LDL (low-density lipoprotein) cholesterol level.

HDLCholesterol

Integer. HDL (high-density lipoprotein) cholesterol level.

Triglycerides

Integer. Triglycerides level.

PainScore

Integer. Patient-reported pain score (e.g., 0-10 scale).

QualityOfLife

Integer. Quality of Life score from a standardized questionnaire.

FunctionalStatus

Integer. Functional status score.

MedicationAdherence

Integer. Medication adherence score or percentage.

ClinicalScore

Integer. A composite or overall clinical score.

Examples

data(medical_research_data)
str(medical_research_data)
head(medical_research_data)
summary(medical_research_data$AgeGroup) # Example, assuming Age is present, use AgeGroup
hist(medical_research_data$SystolicBP)

sbalci/ClinicoPathJamoviModule documentation built on June 13, 2025, 9:34 a.m.