Authors: Peter Macinec, Frantisek Sefcik
To run this project, please make sure you have Docker installed. After, follow the steps:
- Get into project root repository.
- Build application using docker and start container:
Note: Next time, when no build is needed (because image has been already built), you can just run container by skipping
./scripts/run.sh -b
-b
argument.
Do not forget to add dataset into data
folder. Remember that csv file must be named data.csv
.
Dataset we used in this project is well-known Diabetes 130-US hospitals for years 1999-2008 Data Set.
Note: Following description taken from UCI Machine Learning Repository.
The dataset represents 10 years (1999-2008) of clinical care at 130 US hospitals and integrated delivery networks. It includes over 50 features representing patient and hospital outcomes. Information was extracted from the database for encounters that satisfied the following criteria:
- It is an inpatient encounter (a hospital admission).
- It is a diabetic encounter, that is, one during which any kind of diabetes was entered to the system as a diagnosis.
- The length of stay was at least 1 day and at most 14 days.
- Laboratory tests were performed during the encounter.
- Medications were administered during the encounter.
The data contains such attributes as patient number, race, gender, age, admission type, time in hospital, medical specialty of admitting physician, number of lab test performed, HbA1c test result, diagnosis, number of medication, diabetic medications, number of outpatient, inpatient, and emergency visits in the year before the hospitalization, etc.
Links on dataset:
- Kaggle - Diabetes 130 US hospitals for years 1999-2008
- Original paper with data - go to Supplementary Materials section
- UCI Machine Learning Repository