medical_research_data | R Documentation |
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.
data(medical_research_data)
A data frame with 890 rows and 32 variables:
Character. Unique patient identifier.
Integer. The sequential number of the patient's visit.
Character. Date of the visit. Should ideally be parsed as Date.
Character. Identifier for the study center or hospital.
Character. Categorized age group of the patient.
Character. Gender of the patient.
Character. Assigned treatment group (e.g., "Treatment A", "Control").
Character. Primary diagnosis for the patient.
Character. Stage of the primary disease.
Integer. Number of comorbidities.
Character. Body Mass Index category (e.g., "Underweight", "Normal", "Overweight").
Integer. Systolic blood pressure (mmHg).
Integer. Diastolic blood pressure (mmHg).
Integer. Heart rate (beats per minute).
Numeric. Body temperature (e.g., Celsius or Fahrenheit).
Integer. Respiratory rate (breaths per minute).
Integer. Oxygen saturation (SpO2, percent).
Numeric. Glycated hemoglobin level (%).
Numeric. Creatinine level (e.g., mg/dL or µmol/L).
Integer. Estimated Glomerular Filtration Rate.
Numeric. Hemoglobin level (e.g., g/dL).
Numeric. White Blood Cell count (e.g., cells/µL).
Integer. Platelet count (e.g., cells/µL).
Integer. Total cholesterol level (e.g., mg/dL).
Integer. LDL (low-density lipoprotein) cholesterol level.
Integer. HDL (high-density lipoprotein) cholesterol level.
Integer. Triglycerides level.
Integer. Patient-reported pain score (e.g., 0-10 scale).
Integer. Quality of Life score from a standardized questionnaire.
Integer. Functional status score.
Integer. Medication adherence score or percentage.
Integer. A composite or overall clinical score.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.