AIEngineerYvar commited on
Commit
81757c2
·
verified ·
1 Parent(s): 3bb2725

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -31
README.md CHANGED
@@ -32,37 +32,30 @@ As it is meant to promote further evaluations upon having completed its predicti
32
  - **License:** MIT
33
 
34
  ### Model Inputs
35
- | Variable Name | Type | Description | Question Input Type |
36
- | :----------------- | :---- | :-------------------- | :---------------- |
37
- | HighBP | Binary | Does the patient have high blood pressure? | 0 = no, 1 = yes |
38
- | HighChol | Binary | Does the patient have high cholesterol? | 0 = no, 1 = yes |
39
- | CholCheck | Binary | Has the patient had a cholesterol check in 5 years? | 0 = no, 1 = yes |
40
- | BMI | Integer | Body Mass Index | Numeric value |
41
- | Smoker | Binary | Does the patient smoke? (at least 5 packs)? | 0 = no, 1 = yes |
42
- | Stroke | Binary | Has the patient suffered from a stroke? | 0 = no, 1 = yes |
43
- | HeartDiseaseAttack | Binary | Coronary heart disease or myocardial infarction ? | 0 = no, 1 = yes |
44
- | PhysActivity | Binary | Physical activity in the past 30 days? | 0 = no, 1 = yes |
45
- | Fruits | Binary | Does the patient consume one or more fruits per day? | 0 = no, 1 = yes |
46
- | Veggies | Binary | Does the patient consume vegetables one more times per day? | 0 = no, 1 = yes |
47
- | HvyAlcoholConsump | Binary | Is the patient a heavy drinker (14 drinks per week for men/ 7 drinks for women)? | 0 = no, 1 = yes |
48
- | AnyHealthcare | Binary | Does the patient have healthcare coverage? | 0 = no, 1 = yes |
49
- | NoDocbcCost | Binary | Did the patient have any difficulty reaching a doctor due to cost in the past 12 months? | 0 = no, 1 = yes |
50
- | GenHlth | Integer | How good is the patient's general health? | 1 = excellent 2 = very good 3 = good 4 = fair 5 = poor |
51
-
52
- | MenHlth | Integer | For how many days during the past 30 was the patient's mental health not good? | Scale 1-30 |
53
- | PhysHlth | Integer | For how many days during the past 30 was the patient's physical health poor? | Scale 1-30 |
54
- | DiffWalk | Binary | Does the patient have difficulty walking? | 0 = no, 1 = yes |
55
- | Sex | Binary | What is the patient's sex? | 0 = female, 1 = male |
56
- | Age | Integer | What is the patient's age? | 1 = 18-24, 9 = 60-64, 13 = 80 or older |
57
- | Education | Integer | Maximum education reached | 1 = never attended school |
58
- 2 = grades 1 through 8
59
- 3 = grades 9 through 11
60
- 4 = grade 12 or GED (graduate)
61
- 5 = college (1 - 3 years)
62
- 6 = college (4 years or graduate)
63
- | Income | Integer | Income level | 1 = less than $10,000 |
64
- 5 = less than $35,000 |
65
- 8 = $75,000 or more |
66
 
67
  ### Model Sources
68
 
 
32
  - **License:** MIT
33
 
34
  ### Model Inputs
35
+ | Variable Name | Type | Description | Question Input Type |
36
+ |--------------------|---------|-------------------------------------------------------------------------------|------------------------------------------|
37
+ | HighBP | Binary | Does the patient have high blood pressure? | 0 = no, 1 = yes |
38
+ | HighChol | Binary | Does the patient have high cholesterol? | 0 = no, 1 = yes |
39
+ | CholCheck | Binary | Has the patient had a cholesterol check in 5 years? | 0 = no, 1 = yes |
40
+ | BMI | Integer | Body Mass Index | Numeric value |
41
+ | Smoker | Binary | Does the patient smoke? (at least 5 packs)? | 0 = no, 1 = yes |
42
+ | Stroke | Binary | Has the patient suffered from a stroke? | 0 = no, 1 = yes |
43
+ | HeartDiseaseAttack | Binary | Coronary heart disease or myocardial infarction? | 0 = no, 1 = yes |
44
+ | PhysActivity | Binary | Physical activity in the past 30 days? | 0 = no, 1 = yes |
45
+ | Fruits | Binary | Does the patient consume one or more fruits per day? | 0 = no, 1 = yes |
46
+ | Veggies | Binary | Does the patient consume vegetables one or more times per day? | 0 = no, 1 = yes |
47
+ | HvyAlcoholConsump | Binary | Heavy drinker (14 drinks per week for men, 7 for women)? | 0 = no, 1 = yes |
48
+ | AnyHealthcare | Binary | Does the patient have healthcare coverage? | 0 = no, 1 = yes |
49
+ | NoDocbcCost | Binary | Difficulty reaching a doctor due to cost in the past 12 months? | 0 = no, 1 = yes |
50
+ | GenHlth | Integer | How good is the patient's general health? | 1 = excellent, 2 = very good, 3 = good, 4 = fair, 5 = poor |
51
+ | MenHlth | Integer | Days in the past 30 when mental health was not good? | Scale 1-30 |
52
+ | PhysHlth | Integer | Days in the past 30 when physical health was poor? | Scale 1-30 |
53
+ | DiffWalk | Binary | Does the patient have difficulty walking? | 0 = no, 1 = yes |
54
+ | Sex | Binary | What is the patient's sex? | 0 = female, 1 = male |
55
+ | Age | Integer | What is the patient's age? | 1 = 18-24, 9 = 60-64, 13 = 80 or older |
56
+ | Education | Integer | Maximum education reached | 1 = never attended school <br> 2 = grades 1-8 <br> 3 = grades 9-11 <br> 4 = grade 12 or GED <br> 5 = college (1-3 years) <br> 6 = college (4+ years) |
57
+ | Income | Integer | Income level | 1 = less than $10,000 <br> 5 = less than $35,000 <br> 8 = $75,000 or more |
58
+
 
 
 
 
 
 
 
59
 
60
  ### Model Sources
61