30Kanika commited on
Commit
5c4d6d6
β€’
1 Parent(s): 42a0065

create file

Browse files
.gitattributes CHANGED
@@ -1,2 +1,34 @@
1
- # Auto detect text files and perform LF normalization
2
- * text=auto
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tflite filter=lfs diff=lfs merge=lfs -text
29
+ *.tgz filter=lfs diff=lfs merge=lfs -text
30
+ *.wasm filter=lfs diff=lfs merge=lfs -text
31
+ *.xz filter=lfs diff=lfs merge=lfs -text
32
+ *.zip filter=lfs diff=lfs merge=lfs -text
33
+ *.zst filter=lfs diff=lfs merge=lfs -text
34
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Disease Classifier
3
+ emoji: πŸ¦€
4
+ colorFrom: gray
5
+ colorTo: green
6
+ sdk: streamlit
7
+ sdk_version: 1.17.0
8
+ app_file: app.py
9
+ pinned: false
10
+ license: apache-2.0
11
+ ---
12
+
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import numpy as np
4
+ from joblib import load
5
+
6
+ # Title :
7
+ st.title("Disease :blue[Detector] πŸ•΅οΈ")
8
+
9
+ # Reading CSVs :
10
+ data = pd.read_csv("files/Training.csv").drop("prognosis", axis=1)
11
+ ds = pd.read_csv("files/disease_description.csv")
12
+ pr = pd.read_csv("files/disease_precaution.csv")
13
+
14
+ # Columns (representing symptoms) :
15
+ dis= list(data.columns)
16
+
17
+ # Loading model and saved dictionary :
18
+ model = load("model.joblib")
19
+ pro = load("disease.joblib")
20
+
21
+ # Creating an array with zeros :
22
+ arr = np.zeros(135)
23
+
24
+ opt = st.multiselect(
25
+ "Please Select Your :red[Symptoms :]",
26
+ dis
27
+ )
28
+
29
+ # Creating a function to predict and store :
30
+ opt = list(opt)
31
+ def predictions(opt):
32
+ idx = []
33
+ for i in opt:
34
+ idx.append(dis.index(i))
35
+
36
+ for i in idx:
37
+ arr[i] = 1
38
+ arr[-1]= len(opt)
39
+ pred = model.predict([arr])
40
+
41
+ for key in pro.keys():
42
+ if pro[key] == pred[0]:
43
+ print(f'''Disease:{key}
44
+ Array:{arr}''')
45
+ return key
46
+
47
+ # Description :
48
+ def give_des(d):
49
+ return [ds[ds["Disease"]==d].Symptom_Description][0]
50
+
51
+ # Description :
52
+ def give_pre(d):
53
+ return list(pr[pr["Disease"]==d].Symptom_precaution_0)[0],list(pr[pr["Disease"]==d].Symptom_precaution_1)[0],list(pr[pr["Disease"]==d].Symptom_precaution_2)[0], list(pr[pr["Disease"]==d].Symptom_precaution_3)[0]
54
+
55
+
56
+ if st.button("Detect"):
57
+ cola, colb, colc = st.columns(3)
58
+ prognosis = predictions(opt)
59
+
60
+ description = give_des(prognosis)
61
+ p1, p2, p3, p4 = give_pre(prognosis)
62
+
63
+ with colb:
64
+ try:
65
+ st.header(prognosis)
66
+ st.subheader("Description :")
67
+ st.caption(list(description.values)[0])
68
+ st.subheader("Precaution :")
69
+ st.caption(f"- {p1}\n- {p2}\n- {p3}\n- {p4}")
70
+ except:
71
+ st.header(":red[Something Went Wrong] ⚠️")
code.ipynb ADDED
@@ -0,0 +1,1587 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 1,
6
+ "metadata": {},
7
+ "outputs": [],
8
+ "source": [
9
+ "import pandas as pd\n",
10
+ "import numpy as np\n",
11
+ "import matplotlib.pyplot as plt\n",
12
+ "%matplotlib inline\n",
13
+ "from matplotlib import style\n",
14
+ "import warnings\n",
15
+ "warnings.filterwarnings(\"ignore\")"
16
+ ]
17
+ },
18
+ {
19
+ "cell_type": "code",
20
+ "execution_count": 2,
21
+ "metadata": {},
22
+ "outputs": [
23
+ {
24
+ "data": {
25
+ "text/html": [
26
+ "<div>\n",
27
+ "<style scoped>\n",
28
+ " .dataframe tbody tr th:only-of-type {\n",
29
+ " vertical-align: middle;\n",
30
+ " }\n",
31
+ "\n",
32
+ " .dataframe tbody tr th {\n",
33
+ " vertical-align: top;\n",
34
+ " }\n",
35
+ "\n",
36
+ " .dataframe thead th {\n",
37
+ " text-align: right;\n",
38
+ " }\n",
39
+ "</style>\n",
40
+ "<table border=\"1\" class=\"dataframe\">\n",
41
+ " <thead>\n",
42
+ " <tr style=\"text-align: right;\">\n",
43
+ " <th></th>\n",
44
+ " <th>abdominal_pain</th>\n",
45
+ " <th>abnormal_menstruation</th>\n",
46
+ " <th>acidity</th>\n",
47
+ " <th>acute_liver_failure</th>\n",
48
+ " <th>altered_sensorium</th>\n",
49
+ " <th>anxiety</th>\n",
50
+ " <th>back_pain</th>\n",
51
+ " <th>belly_pain</th>\n",
52
+ " <th>blackheads</th>\n",
53
+ " <th>bladder_discomfort</th>\n",
54
+ " <th>...</th>\n",
55
+ " <th>weakness_in_limbs</th>\n",
56
+ " <th>weakness_of_one_body_side</th>\n",
57
+ " <th>weight_gain</th>\n",
58
+ " <th>weight_loss</th>\n",
59
+ " <th>yellow_crust_ooze</th>\n",
60
+ " <th>yellow_urine</th>\n",
61
+ " <th>yellowing_of_eyes</th>\n",
62
+ " <th>yellowish_skin</th>\n",
63
+ " <th>prognosis</th>\n",
64
+ " <th>symptoms</th>\n",
65
+ " </tr>\n",
66
+ " </thead>\n",
67
+ " <tbody>\n",
68
+ " <tr>\n",
69
+ " <th>25</th>\n",
70
+ " <td>0</td>\n",
71
+ " <td>1</td>\n",
72
+ " <td>0</td>\n",
73
+ " <td>0</td>\n",
74
+ " <td>0</td>\n",
75
+ " <td>0</td>\n",
76
+ " <td>0</td>\n",
77
+ " <td>0</td>\n",
78
+ " <td>0</td>\n",
79
+ " <td>0</td>\n",
80
+ " <td>...</td>\n",
81
+ " <td>0</td>\n",
82
+ " <td>0</td>\n",
83
+ " <td>0</td>\n",
84
+ " <td>1</td>\n",
85
+ " <td>0</td>\n",
86
+ " <td>0</td>\n",
87
+ " <td>0</td>\n",
88
+ " <td>0</td>\n",
89
+ " <td>Hyperthyroidism</td>\n",
90
+ " <td>11</td>\n",
91
+ " </tr>\n",
92
+ " </tbody>\n",
93
+ "</table>\n",
94
+ "<p>1 rows Γ— 136 columns</p>\n",
95
+ "</div>"
96
+ ],
97
+ "text/plain": [
98
+ " abdominal_pain abnormal_menstruation acidity acute_liver_failure \\\n",
99
+ "25 0 1 0 0 \n",
100
+ "\n",
101
+ " altered_sensorium anxiety back_pain belly_pain blackheads \\\n",
102
+ "25 0 0 0 0 0 \n",
103
+ "\n",
104
+ " bladder_discomfort ... weakness_in_limbs weakness_of_one_body_side \\\n",
105
+ "25 0 ... 0 0 \n",
106
+ "\n",
107
+ " weight_gain weight_loss yellow_crust_ooze yellow_urine \\\n",
108
+ "25 0 1 0 0 \n",
109
+ "\n",
110
+ " yellowing_of_eyes yellowish_skin prognosis symptoms \n",
111
+ "25 0 0 Hyperthyroidism 11 \n",
112
+ "\n",
113
+ "[1 rows x 136 columns]"
114
+ ]
115
+ },
116
+ "execution_count": 2,
117
+ "metadata": {},
118
+ "output_type": "execute_result"
119
+ }
120
+ ],
121
+ "source": [
122
+ "data=pd.read_csv(\"files/Training.csv\")\n",
123
+ "data.head()\n",
124
+ "\n",
125
+ "test = pd.read_csv(\"files/Testing.csv\", index_col=[0])\n",
126
+ "test.sample()"
127
+ ]
128
+ },
129
+ {
130
+ "cell_type": "code",
131
+ "execution_count": 3,
132
+ "metadata": {},
133
+ "outputs": [
134
+ {
135
+ "data": {
136
+ "text/plain": [
137
+ "(306, 135)"
138
+ ]
139
+ },
140
+ "execution_count": 3,
141
+ "metadata": {},
142
+ "output_type": "execute_result"
143
+ }
144
+ ],
145
+ "source": [
146
+ "data.shape"
147
+ ]
148
+ },
149
+ {
150
+ "cell_type": "code",
151
+ "execution_count": 4,
152
+ "metadata": {},
153
+ "outputs": [],
154
+ "source": [
155
+ "data[\"prognosis\"] = data[\"prognosis\"].apply(lambda x: x.replace(\"Paralysis (brain hemorrhageH\", \"Paralysis (brain hemorrhage)\"))"
156
+ ]
157
+ },
158
+ {
159
+ "cell_type": "code",
160
+ "execution_count": 5,
161
+ "metadata": {},
162
+ "outputs": [
163
+ {
164
+ "name": "stdout",
165
+ "output_type": "stream",
166
+ "text": [
167
+ "prognosis\n"
168
+ ]
169
+ }
170
+ ],
171
+ "source": [
172
+ "new_data = data.copy()\n",
173
+ "for i in new_data.columns :\n",
174
+ " if new_data[i].dtype=='object':\n",
175
+ " print(i)"
176
+ ]
177
+ },
178
+ {
179
+ "cell_type": "code",
180
+ "execution_count": 6,
181
+ "metadata": {},
182
+ "outputs": [
183
+ {
184
+ "data": {
185
+ "text/plain": [
186
+ "Dengue 10\n",
187
+ "Hepatitis D 10\n",
188
+ "Chicken pox 10\n",
189
+ "Migraine 10\n",
190
+ "Diabetes 9\n",
191
+ "Hypoglycemia 9\n",
192
+ "Hepatitis B 9\n",
193
+ "Hepatitis A 9\n",
194
+ "Jaundice 9\n",
195
+ "Hyperthyroidism 9\n",
196
+ "Hepatitis E 9\n",
197
+ "Common Cold 9\n",
198
+ "Pneumonia 9\n",
199
+ "Tuberculosis 9\n",
200
+ "Typhoid 9\n",
201
+ "Chronic cholestasis 8\n",
202
+ "Malaria 8\n",
203
+ "Hypothyroidism 8\n",
204
+ "Alcoholic hepatitis 8\n",
205
+ "Varicose veins 8\n",
206
+ "Peptic ulcer disease 7\n",
207
+ "Paroxysmal Positional Vertigo 7\n",
208
+ "Osteoarthritis 7\n",
209
+ "Psoriasis 7\n",
210
+ "Hepatitis C 7\n",
211
+ "GERD 7\n",
212
+ "Bronchial Asthma 7\n",
213
+ "Hypertension 6\n",
214
+ "Cervical spondylosis 6\n",
215
+ "Impetigo 6\n",
216
+ "Arthritis 6\n",
217
+ "Drug Reaction 6\n",
218
+ "Dimorphic hemorrhoids(piles) 6\n",
219
+ "Urinary tract infection 5\n",
220
+ "Allergy 5\n",
221
+ "Paralysis (brain hemorrhage) 5\n",
222
+ "Acne 5\n",
223
+ "Fungal infection 5\n",
224
+ "Gastroenteritis 5\n",
225
+ "Heart attack 5\n",
226
+ "AIDS 5\n",
227
+ "Covid 2\n",
228
+ "Name: prognosis, dtype: int64"
229
+ ]
230
+ },
231
+ "execution_count": 6,
232
+ "metadata": {},
233
+ "output_type": "execute_result"
234
+ }
235
+ ],
236
+ "source": [
237
+ "new_data[\"prognosis\"].value_counts()"
238
+ ]
239
+ },
240
+ {
241
+ "cell_type": "code",
242
+ "execution_count": 7,
243
+ "metadata": {},
244
+ "outputs": [
245
+ {
246
+ "data": {
247
+ "text/plain": [
248
+ "array(['AIDS', 'Acne', 'Alcoholic hepatitis', 'Allergy', 'Arthritis',\n",
249
+ " 'Bronchial Asthma', 'Cervical spondylosis', 'Chicken pox',\n",
250
+ " 'Chronic cholestasis', 'Common Cold', 'Covid', 'Dengue',\n",
251
+ " 'Diabetes ', 'Dimorphic hemorrhoids(piles)', 'Drug Reaction',\n",
252
+ " 'Fungal infection', 'GERD', 'Gastroenteritis', 'Heart attack',\n",
253
+ " 'Hepatitis A', 'Hepatitis B', 'Hepatitis C', 'Hepatitis D',\n",
254
+ " 'Hepatitis E', 'Hypertension ', 'Hyperthyroidism', 'Hypoglycemia',\n",
255
+ " 'Hypothyroidism', 'Impetigo', 'Jaundice', 'Malaria', 'Migraine',\n",
256
+ " 'Osteoarthritis', 'Paralysis (brain hemorrhage)',\n",
257
+ " 'Paroxysmal Positional Vertigo', 'Peptic ulcer disease',\n",
258
+ " 'Pneumonia', 'Psoriasis', 'Tuberculosis', 'Typhoid',\n",
259
+ " 'Urinary tract infection', 'Varicose veins'], dtype=object)"
260
+ ]
261
+ },
262
+ "execution_count": 7,
263
+ "metadata": {},
264
+ "output_type": "execute_result"
265
+ }
266
+ ],
267
+ "source": [
268
+ "dis = new_data.prognosis.unique()\n",
269
+ "dis"
270
+ ]
271
+ },
272
+ {
273
+ "cell_type": "code",
274
+ "execution_count": 8,
275
+ "metadata": {},
276
+ "outputs": [
277
+ {
278
+ "data": {
279
+ "text/html": [
280
+ "<div>\n",
281
+ "<style scoped>\n",
282
+ " .dataframe tbody tr th:only-of-type {\n",
283
+ " vertical-align: middle;\n",
284
+ " }\n",
285
+ "\n",
286
+ " .dataframe tbody tr th {\n",
287
+ " vertical-align: top;\n",
288
+ " }\n",
289
+ "\n",
290
+ " .dataframe thead th {\n",
291
+ " text-align: right;\n",
292
+ " }\n",
293
+ "</style>\n",
294
+ "<table border=\"1\" class=\"dataframe\">\n",
295
+ " <thead>\n",
296
+ " <tr style=\"text-align: right;\">\n",
297
+ " <th></th>\n",
298
+ " <th>abdominal_pain</th>\n",
299
+ " <th>abnormal_menstruation</th>\n",
300
+ " <th>acidity</th>\n",
301
+ " <th>acute_liver_failure</th>\n",
302
+ " <th>altered_sensorium</th>\n",
303
+ " <th>anxiety</th>\n",
304
+ " <th>back_pain</th>\n",
305
+ " <th>belly_pain</th>\n",
306
+ " <th>blackheads</th>\n",
307
+ " <th>bladder_discomfort</th>\n",
308
+ " <th>...</th>\n",
309
+ " <th>weakness_in_limbs</th>\n",
310
+ " <th>weakness_of_one_body_side</th>\n",
311
+ " <th>weight_gain</th>\n",
312
+ " <th>weight_loss</th>\n",
313
+ " <th>yellow_crust_ooze</th>\n",
314
+ " <th>yellow_urine</th>\n",
315
+ " <th>yellowing_of_eyes</th>\n",
316
+ " <th>yellowish_skin</th>\n",
317
+ " <th>prognosis</th>\n",
318
+ " <th>symptoms</th>\n",
319
+ " </tr>\n",
320
+ " </thead>\n",
321
+ " <tbody>\n",
322
+ " <tr>\n",
323
+ " <th>13</th>\n",
324
+ " <td>1</td>\n",
325
+ " <td>0</td>\n",
326
+ " <td>0</td>\n",
327
+ " <td>0</td>\n",
328
+ " <td>0</td>\n",
329
+ " <td>0</td>\n",
330
+ " <td>0</td>\n",
331
+ " <td>0</td>\n",
332
+ " <td>0</td>\n",
333
+ " <td>0</td>\n",
334
+ " <td>...</td>\n",
335
+ " <td>0</td>\n",
336
+ " <td>0</td>\n",
337
+ " <td>0</td>\n",
338
+ " <td>0</td>\n",
339
+ " <td>0</td>\n",
340
+ " <td>0</td>\n",
341
+ " <td>0</td>\n",
342
+ " <td>1</td>\n",
343
+ " <td>Alcoholic hepatitis</td>\n",
344
+ " <td>6</td>\n",
345
+ " </tr>\n",
346
+ " </tbody>\n",
347
+ "</table>\n",
348
+ "<p>1 rows Γ— 136 columns</p>\n",
349
+ "</div>"
350
+ ],
351
+ "text/plain": [
352
+ " abdominal_pain abnormal_menstruation acidity acute_liver_failure \\\n",
353
+ "13 1 0 0 0 \n",
354
+ "\n",
355
+ " altered_sensorium anxiety back_pain belly_pain blackheads \\\n",
356
+ "13 0 0 0 0 0 \n",
357
+ "\n",
358
+ " bladder_discomfort ... weakness_in_limbs weakness_of_one_body_side \\\n",
359
+ "13 0 ... 0 0 \n",
360
+ "\n",
361
+ " weight_gain weight_loss yellow_crust_ooze yellow_urine \\\n",
362
+ "13 0 0 0 0 \n",
363
+ "\n",
364
+ " yellowing_of_eyes yellowish_skin prognosis symptoms \n",
365
+ "13 0 1 Alcoholic hepatitis 6 \n",
366
+ "\n",
367
+ "[1 rows x 136 columns]"
368
+ ]
369
+ },
370
+ "execution_count": 8,
371
+ "metadata": {},
372
+ "output_type": "execute_result"
373
+ }
374
+ ],
375
+ "source": [
376
+ "col = new_data.columns\n",
377
+ "new_data[\"symptoms\"] = new_data[col].sum(axis=1)\n",
378
+ "new_data.sample()"
379
+ ]
380
+ },
381
+ {
382
+ "cell_type": "code",
383
+ "execution_count": 9,
384
+ "metadata": {},
385
+ "outputs": [
386
+ {
387
+ "data": {
388
+ "text/plain": [
389
+ "(306, 136)"
390
+ ]
391
+ },
392
+ "execution_count": 9,
393
+ "metadata": {},
394
+ "output_type": "execute_result"
395
+ }
396
+ ],
397
+ "source": [
398
+ "new_data.shape"
399
+ ]
400
+ },
401
+ {
402
+ "cell_type": "code",
403
+ "execution_count": 10,
404
+ "metadata": {},
405
+ "outputs": [
406
+ {
407
+ "name": "stdout",
408
+ "output_type": "stream",
409
+ "text": [
410
+ "{'AIDS': 0, 'Acne': 1, 'Alcoholic hepatitis': 2, 'Allergy': 3, 'Arthritis': 4, 'Bronchial Asthma': 5, 'Cervical spondylosis': 6, 'Chicken pox': 7, 'Chronic cholestasis': 8, 'Common Cold': 9, 'Covid': 10, 'Dengue': 11, 'Diabetes ': 12, 'Dimorphic hemorrhoids(piles)': 13, 'Drug Reaction': 14, 'Fungal infection': 15, 'GERD': 16, 'Gastroenteritis': 17, 'Heart attack': 18, 'Hepatitis A': 19, 'Hepatitis B': 20, 'Hepatitis C': 21, 'Hepatitis D': 22, 'Hepatitis E': 23, 'Hypertension ': 24, 'Hyperthyroidism': 25, 'Hypoglycemia': 26, 'Hypothyroidism': 27, 'Impetigo': 28, 'Jaundice': 29, 'Malaria': 30, 'Migraine': 31, 'Osteoarthritis': 32, 'Paralysis (brain hemorrhage)': 33, 'Paroxysmal Positional Vertigo': 34, 'Peptic ulcer disease': 35, 'Pneumonia': 36, 'Psoriasis': 37, 'Tuberculosis': 38, 'Typhoid': 39, 'Urinary tract infection': 40, 'Varicose veins': 41}\n"
411
+ ]
412
+ }
413
+ ],
414
+ "source": [
415
+ "num=[i for i in range(len(dis))]\n",
416
+ "dic=dict(zip(dis,num))\n",
417
+ "print(dic)"
418
+ ]
419
+ },
420
+ {
421
+ "cell_type": "code",
422
+ "execution_count": 11,
423
+ "metadata": {},
424
+ "outputs": [
425
+ {
426
+ "data": {
427
+ "text/html": [
428
+ "<div>\n",
429
+ "<style scoped>\n",
430
+ " .dataframe tbody tr th:only-of-type {\n",
431
+ " vertical-align: middle;\n",
432
+ " }\n",
433
+ "\n",
434
+ " .dataframe tbody tr th {\n",
435
+ " vertical-align: top;\n",
436
+ " }\n",
437
+ "\n",
438
+ " .dataframe thead th {\n",
439
+ " text-align: right;\n",
440
+ " }\n",
441
+ "</style>\n",
442
+ "<table border=\"1\" class=\"dataframe\">\n",
443
+ " <thead>\n",
444
+ " <tr style=\"text-align: right;\">\n",
445
+ " <th></th>\n",
446
+ " <th>abdominal_pain</th>\n",
447
+ " <th>abnormal_menstruation</th>\n",
448
+ " <th>acidity</th>\n",
449
+ " <th>acute_liver_failure</th>\n",
450
+ " <th>altered_sensorium</th>\n",
451
+ " <th>anxiety</th>\n",
452
+ " <th>back_pain</th>\n",
453
+ " <th>belly_pain</th>\n",
454
+ " <th>blackheads</th>\n",
455
+ " <th>bladder_discomfort</th>\n",
456
+ " <th>...</th>\n",
457
+ " <th>weakness_in_limbs</th>\n",
458
+ " <th>weakness_of_one_body_side</th>\n",
459
+ " <th>weight_gain</th>\n",
460
+ " <th>weight_loss</th>\n",
461
+ " <th>yellow_crust_ooze</th>\n",
462
+ " <th>yellow_urine</th>\n",
463
+ " <th>yellowing_of_eyes</th>\n",
464
+ " <th>yellowish_skin</th>\n",
465
+ " <th>prognosis</th>\n",
466
+ " <th>symptoms</th>\n",
467
+ " </tr>\n",
468
+ " </thead>\n",
469
+ " <tbody>\n",
470
+ " <tr>\n",
471
+ " <th>0</th>\n",
472
+ " <td>0</td>\n",
473
+ " <td>0</td>\n",
474
+ " <td>0</td>\n",
475
+ " <td>0</td>\n",
476
+ " <td>0</td>\n",
477
+ " <td>0</td>\n",
478
+ " <td>0</td>\n",
479
+ " <td>0</td>\n",
480
+ " <td>0</td>\n",
481
+ " <td>0</td>\n",
482
+ " <td>...</td>\n",
483
+ " <td>0</td>\n",
484
+ " <td>0</td>\n",
485
+ " <td>0</td>\n",
486
+ " <td>0</td>\n",
487
+ " <td>0</td>\n",
488
+ " <td>0</td>\n",
489
+ " <td>0</td>\n",
490
+ " <td>0</td>\n",
491
+ " <td>0</td>\n",
492
+ " <td>4</td>\n",
493
+ " </tr>\n",
494
+ " <tr>\n",
495
+ " <th>1</th>\n",
496
+ " <td>0</td>\n",
497
+ " <td>0</td>\n",
498
+ " <td>0</td>\n",
499
+ " <td>0</td>\n",
500
+ " <td>0</td>\n",
501
+ " <td>0</td>\n",
502
+ " <td>0</td>\n",
503
+ " <td>0</td>\n",
504
+ " <td>0</td>\n",
505
+ " <td>0</td>\n",
506
+ " <td>...</td>\n",
507
+ " <td>0</td>\n",
508
+ " <td>0</td>\n",
509
+ " <td>0</td>\n",
510
+ " <td>0</td>\n",
511
+ " <td>0</td>\n",
512
+ " <td>0</td>\n",
513
+ " <td>0</td>\n",
514
+ " <td>0</td>\n",
515
+ " <td>0</td>\n",
516
+ " <td>3</td>\n",
517
+ " </tr>\n",
518
+ " <tr>\n",
519
+ " <th>2</th>\n",
520
+ " <td>0</td>\n",
521
+ " <td>0</td>\n",
522
+ " <td>0</td>\n",
523
+ " <td>0</td>\n",
524
+ " <td>0</td>\n",
525
+ " <td>0</td>\n",
526
+ " <td>0</td>\n",
527
+ " <td>0</td>\n",
528
+ " <td>0</td>\n",
529
+ " <td>0</td>\n",
530
+ " <td>...</td>\n",
531
+ " <td>0</td>\n",
532
+ " <td>0</td>\n",
533
+ " <td>0</td>\n",
534
+ " <td>0</td>\n",
535
+ " <td>0</td>\n",
536
+ " <td>0</td>\n",
537
+ " <td>0</td>\n",
538
+ " <td>0</td>\n",
539
+ " <td>0</td>\n",
540
+ " <td>3</td>\n",
541
+ " </tr>\n",
542
+ " </tbody>\n",
543
+ "</table>\n",
544
+ "<p>3 rows Γ— 136 columns</p>\n",
545
+ "</div>"
546
+ ],
547
+ "text/plain": [
548
+ " abdominal_pain abnormal_menstruation acidity acute_liver_failure \\\n",
549
+ "0 0 0 0 0 \n",
550
+ "1 0 0 0 0 \n",
551
+ "2 0 0 0 0 \n",
552
+ "\n",
553
+ " altered_sensorium anxiety back_pain belly_pain blackheads \\\n",
554
+ "0 0 0 0 0 0 \n",
555
+ "1 0 0 0 0 0 \n",
556
+ "2 0 0 0 0 0 \n",
557
+ "\n",
558
+ " bladder_discomfort ... weakness_in_limbs weakness_of_one_body_side \\\n",
559
+ "0 0 ... 0 0 \n",
560
+ "1 0 ... 0 0 \n",
561
+ "2 0 ... 0 0 \n",
562
+ "\n",
563
+ " weight_gain weight_loss yellow_crust_ooze yellow_urine \\\n",
564
+ "0 0 0 0 0 \n",
565
+ "1 0 0 0 0 \n",
566
+ "2 0 0 0 0 \n",
567
+ "\n",
568
+ " yellowing_of_eyes yellowish_skin prognosis symptoms \n",
569
+ "0 0 0 0 4 \n",
570
+ "1 0 0 0 3 \n",
571
+ "2 0 0 0 3 \n",
572
+ "\n",
573
+ "[3 rows x 136 columns]"
574
+ ]
575
+ },
576
+ "execution_count": 11,
577
+ "metadata": {},
578
+ "output_type": "execute_result"
579
+ }
580
+ ],
581
+ "source": [
582
+ "new_data.replace({'prognosis':dic}, inplace=True)\n",
583
+ "test.replace({'prognosis':dic}, inplace=True)\n",
584
+ "new_data.head(3)"
585
+ ]
586
+ },
587
+ {
588
+ "cell_type": "code",
589
+ "execution_count": 12,
590
+ "metadata": {},
591
+ "outputs": [],
592
+ "source": [
593
+ "import seaborn as sns"
594
+ ]
595
+ },
596
+ {
597
+ "cell_type": "code",
598
+ "execution_count": 13,
599
+ "metadata": {},
600
+ "outputs": [],
601
+ "source": [
602
+ "X=new_data.drop(columns=\"prognosis\")\n",
603
+ "y=new_data.prognosis"
604
+ ]
605
+ },
606
+ {
607
+ "cell_type": "code",
608
+ "execution_count": 14,
609
+ "metadata": {},
610
+ "outputs": [],
611
+ "source": [
612
+ "from sklearn.model_selection import train_test_split"
613
+ ]
614
+ },
615
+ {
616
+ "cell_type": "code",
617
+ "execution_count": 15,
618
+ "metadata": {},
619
+ "outputs": [],
620
+ "source": [
621
+ "X_train, X_test , y_train, y_test = X, test.drop(\"prognosis\", axis=1), y, test.prognosis"
622
+ ]
623
+ },
624
+ {
625
+ "cell_type": "code",
626
+ "execution_count": 16,
627
+ "metadata": {},
628
+ "outputs": [],
629
+ "source": [
630
+ "import plotly.graph_objects as go"
631
+ ]
632
+ },
633
+ {
634
+ "cell_type": "code",
635
+ "execution_count": 17,
636
+ "metadata": {},
637
+ "outputs": [
638
+ {
639
+ "data": {
640
+ "application/vnd.plotly.v1+json": {
641
+ "config": {
642
+ "plotlyServerURL": "https://plot.ly"
643
+ },
644
+ "data": [
645
+ {
646
+ "orientation": "h",
647
+ "type": "bar",
648
+ "x": [
649
+ 10,
650
+ 10,
651
+ 10,
652
+ 10,
653
+ 9,
654
+ 9,
655
+ 9,
656
+ 9,
657
+ 9,
658
+ 9,
659
+ 9,
660
+ 9,
661
+ 9,
662
+ 9,
663
+ 9,
664
+ 8,
665
+ 8,
666
+ 8,
667
+ 8,
668
+ 8,
669
+ 7,
670
+ 7,
671
+ 7,
672
+ 7,
673
+ 7,
674
+ 7,
675
+ 7,
676
+ 6,
677
+ 6,
678
+ 6,
679
+ 6,
680
+ 6,
681
+ 6,
682
+ 5,
683
+ 5,
684
+ 5,
685
+ 5,
686
+ 5,
687
+ 5,
688
+ 5,
689
+ 5,
690
+ 2
691
+ ],
692
+ "y": [
693
+ 11,
694
+ 22,
695
+ 7,
696
+ 31,
697
+ 12,
698
+ 26,
699
+ 20,
700
+ 19,
701
+ 29,
702
+ 25,
703
+ 23,
704
+ 9,
705
+ 36,
706
+ 38,
707
+ 39,
708
+ 8,
709
+ 30,
710
+ 27,
711
+ 2,
712
+ 41,
713
+ 35,
714
+ 34,
715
+ 32,
716
+ 37,
717
+ 21,
718
+ 16,
719
+ 5,
720
+ 24,
721
+ 6,
722
+ 28,
723
+ 4,
724
+ 14,
725
+ 13,
726
+ 40,
727
+ 3,
728
+ 33,
729
+ 1,
730
+ 15,
731
+ 17,
732
+ 18,
733
+ 0,
734
+ 10
735
+ ]
736
+ }
737
+ ],
738
+ "layout": {
739
+ "height": 1000,
740
+ "template": {
741
+ "data": {
742
+ "bar": [
743
+ {
744
+ "error_x": {
745
+ "color": "#2a3f5f"
746
+ },
747
+ "error_y": {
748
+ "color": "#2a3f5f"
749
+ },
750
+ "marker": {
751
+ "line": {
752
+ "color": "#E5ECF6",
753
+ "width": 0.5
754
+ },
755
+ "pattern": {
756
+ "fillmode": "overlay",
757
+ "size": 10,
758
+ "solidity": 0.2
759
+ }
760
+ },
761
+ "type": "bar"
762
+ }
763
+ ],
764
+ "barpolar": [
765
+ {
766
+ "marker": {
767
+ "line": {
768
+ "color": "#E5ECF6",
769
+ "width": 0.5
770
+ },
771
+ "pattern": {
772
+ "fillmode": "overlay",
773
+ "size": 10,
774
+ "solidity": 0.2
775
+ }
776
+ },
777
+ "type": "barpolar"
778
+ }
779
+ ],
780
+ "carpet": [
781
+ {
782
+ "aaxis": {
783
+ "endlinecolor": "#2a3f5f",
784
+ "gridcolor": "white",
785
+ "linecolor": "white",
786
+ "minorgridcolor": "white",
787
+ "startlinecolor": "#2a3f5f"
788
+ },
789
+ "baxis": {
790
+ "endlinecolor": "#2a3f5f",
791
+ "gridcolor": "white",
792
+ "linecolor": "white",
793
+ "minorgridcolor": "white",
794
+ "startlinecolor": "#2a3f5f"
795
+ },
796
+ "type": "carpet"
797
+ }
798
+ ],
799
+ "choropleth": [
800
+ {
801
+ "colorbar": {
802
+ "outlinewidth": 0,
803
+ "ticks": ""
804
+ },
805
+ "type": "choropleth"
806
+ }
807
+ ],
808
+ "contour": [
809
+ {
810
+ "colorbar": {
811
+ "outlinewidth": 0,
812
+ "ticks": ""
813
+ },
814
+ "colorscale": [
815
+ [
816
+ 0,
817
+ "#0d0887"
818
+ ],
819
+ [
820
+ 0.1111111111111111,
821
+ "#46039f"
822
+ ],
823
+ [
824
+ 0.2222222222222222,
825
+ "#7201a8"
826
+ ],
827
+ [
828
+ 0.3333333333333333,
829
+ "#9c179e"
830
+ ],
831
+ [
832
+ 0.4444444444444444,
833
+ "#bd3786"
834
+ ],
835
+ [
836
+ 0.5555555555555556,
837
+ "#d8576b"
838
+ ],
839
+ [
840
+ 0.6666666666666666,
841
+ "#ed7953"
842
+ ],
843
+ [
844
+ 0.7777777777777778,
845
+ "#fb9f3a"
846
+ ],
847
+ [
848
+ 0.8888888888888888,
849
+ "#fdca26"
850
+ ],
851
+ [
852
+ 1,
853
+ "#f0f921"
854
+ ]
855
+ ],
856
+ "type": "contour"
857
+ }
858
+ ],
859
+ "contourcarpet": [
860
+ {
861
+ "colorbar": {
862
+ "outlinewidth": 0,
863
+ "ticks": ""
864
+ },
865
+ "type": "contourcarpet"
866
+ }
867
+ ],
868
+ "heatmap": [
869
+ {
870
+ "colorbar": {
871
+ "outlinewidth": 0,
872
+ "ticks": ""
873
+ },
874
+ "colorscale": [
875
+ [
876
+ 0,
877
+ "#0d0887"
878
+ ],
879
+ [
880
+ 0.1111111111111111,
881
+ "#46039f"
882
+ ],
883
+ [
884
+ 0.2222222222222222,
885
+ "#7201a8"
886
+ ],
887
+ [
888
+ 0.3333333333333333,
889
+ "#9c179e"
890
+ ],
891
+ [
892
+ 0.4444444444444444,
893
+ "#bd3786"
894
+ ],
895
+ [
896
+ 0.5555555555555556,
897
+ "#d8576b"
898
+ ],
899
+ [
900
+ 0.6666666666666666,
901
+ "#ed7953"
902
+ ],
903
+ [
904
+ 0.7777777777777778,
905
+ "#fb9f3a"
906
+ ],
907
+ [
908
+ 0.8888888888888888,
909
+ "#fdca26"
910
+ ],
911
+ [
912
+ 1,
913
+ "#f0f921"
914
+ ]
915
+ ],
916
+ "type": "heatmap"
917
+ }
918
+ ],
919
+ "heatmapgl": [
920
+ {
921
+ "colorbar": {
922
+ "outlinewidth": 0,
923
+ "ticks": ""
924
+ },
925
+ "colorscale": [
926
+ [
927
+ 0,
928
+ "#0d0887"
929
+ ],
930
+ [
931
+ 0.1111111111111111,
932
+ "#46039f"
933
+ ],
934
+ [
935
+ 0.2222222222222222,
936
+ "#7201a8"
937
+ ],
938
+ [
939
+ 0.3333333333333333,
940
+ "#9c179e"
941
+ ],
942
+ [
943
+ 0.4444444444444444,
944
+ "#bd3786"
945
+ ],
946
+ [
947
+ 0.5555555555555556,
948
+ "#d8576b"
949
+ ],
950
+ [
951
+ 0.6666666666666666,
952
+ "#ed7953"
953
+ ],
954
+ [
955
+ 0.7777777777777778,
956
+ "#fb9f3a"
957
+ ],
958
+ [
959
+ 0.8888888888888888,
960
+ "#fdca26"
961
+ ],
962
+ [
963
+ 1,
964
+ "#f0f921"
965
+ ]
966
+ ],
967
+ "type": "heatmapgl"
968
+ }
969
+ ],
970
+ "histogram": [
971
+ {
972
+ "marker": {
973
+ "pattern": {
974
+ "fillmode": "overlay",
975
+ "size": 10,
976
+ "solidity": 0.2
977
+ }
978
+ },
979
+ "type": "histogram"
980
+ }
981
+ ],
982
+ "histogram2d": [
983
+ {
984
+ "colorbar": {
985
+ "outlinewidth": 0,
986
+ "ticks": ""
987
+ },
988
+ "colorscale": [
989
+ [
990
+ 0,
991
+ "#0d0887"
992
+ ],
993
+ [
994
+ 0.1111111111111111,
995
+ "#46039f"
996
+ ],
997
+ [
998
+ 0.2222222222222222,
999
+ "#7201a8"
1000
+ ],
1001
+ [
1002
+ 0.3333333333333333,
1003
+ "#9c179e"
1004
+ ],
1005
+ [
1006
+ 0.4444444444444444,
1007
+ "#bd3786"
1008
+ ],
1009
+ [
1010
+ 0.5555555555555556,
1011
+ "#d8576b"
1012
+ ],
1013
+ [
1014
+ 0.6666666666666666,
1015
+ "#ed7953"
1016
+ ],
1017
+ [
1018
+ 0.7777777777777778,
1019
+ "#fb9f3a"
1020
+ ],
1021
+ [
1022
+ 0.8888888888888888,
1023
+ "#fdca26"
1024
+ ],
1025
+ [
1026
+ 1,
1027
+ "#f0f921"
1028
+ ]
1029
+ ],
1030
+ "type": "histogram2d"
1031
+ }
1032
+ ],
1033
+ "histogram2dcontour": [
1034
+ {
1035
+ "colorbar": {
1036
+ "outlinewidth": 0,
1037
+ "ticks": ""
1038
+ },
1039
+ "colorscale": [
1040
+ [
1041
+ 0,
1042
+ "#0d0887"
1043
+ ],
1044
+ [
1045
+ 0.1111111111111111,
1046
+ "#46039f"
1047
+ ],
1048
+ [
1049
+ 0.2222222222222222,
1050
+ "#7201a8"
1051
+ ],
1052
+ [
1053
+ 0.3333333333333333,
1054
+ "#9c179e"
1055
+ ],
1056
+ [
1057
+ 0.4444444444444444,
1058
+ "#bd3786"
1059
+ ],
1060
+ [
1061
+ 0.5555555555555556,
1062
+ "#d8576b"
1063
+ ],
1064
+ [
1065
+ 0.6666666666666666,
1066
+ "#ed7953"
1067
+ ],
1068
+ [
1069
+ 0.7777777777777778,
1070
+ "#fb9f3a"
1071
+ ],
1072
+ [
1073
+ 0.8888888888888888,
1074
+ "#fdca26"
1075
+ ],
1076
+ [
1077
+ 1,
1078
+ "#f0f921"
1079
+ ]
1080
+ ],
1081
+ "type": "histogram2dcontour"
1082
+ }
1083
+ ],
1084
+ "mesh3d": [
1085
+ {
1086
+ "colorbar": {
1087
+ "outlinewidth": 0,
1088
+ "ticks": ""
1089
+ },
1090
+ "type": "mesh3d"
1091
+ }
1092
+ ],
1093
+ "parcoords": [
1094
+ {
1095
+ "line": {
1096
+ "colorbar": {
1097
+ "outlinewidth": 0,
1098
+ "ticks": ""
1099
+ }
1100
+ },
1101
+ "type": "parcoords"
1102
+ }
1103
+ ],
1104
+ "pie": [
1105
+ {
1106
+ "automargin": true,
1107
+ "type": "pie"
1108
+ }
1109
+ ],
1110
+ "scatter": [
1111
+ {
1112
+ "fillpattern": {
1113
+ "fillmode": "overlay",
1114
+ "size": 10,
1115
+ "solidity": 0.2
1116
+ },
1117
+ "type": "scatter"
1118
+ }
1119
+ ],
1120
+ "scatter3d": [
1121
+ {
1122
+ "line": {
1123
+ "colorbar": {
1124
+ "outlinewidth": 0,
1125
+ "ticks": ""
1126
+ }
1127
+ },
1128
+ "marker": {
1129
+ "colorbar": {
1130
+ "outlinewidth": 0,
1131
+ "ticks": ""
1132
+ }
1133
+ },
1134
+ "type": "scatter3d"
1135
+ }
1136
+ ],
1137
+ "scattercarpet": [
1138
+ {
1139
+ "marker": {
1140
+ "colorbar": {
1141
+ "outlinewidth": 0,
1142
+ "ticks": ""
1143
+ }
1144
+ },
1145
+ "type": "scattercarpet"
1146
+ }
1147
+ ],
1148
+ "scattergeo": [
1149
+ {
1150
+ "marker": {
1151
+ "colorbar": {
1152
+ "outlinewidth": 0,
1153
+ "ticks": ""
1154
+ }
1155
+ },
1156
+ "type": "scattergeo"
1157
+ }
1158
+ ],
1159
+ "scattergl": [
1160
+ {
1161
+ "marker": {
1162
+ "colorbar": {
1163
+ "outlinewidth": 0,
1164
+ "ticks": ""
1165
+ }
1166
+ },
1167
+ "type": "scattergl"
1168
+ }
1169
+ ],
1170
+ "scattermapbox": [
1171
+ {
1172
+ "marker": {
1173
+ "colorbar": {
1174
+ "outlinewidth": 0,
1175
+ "ticks": ""
1176
+ }
1177
+ },
1178
+ "type": "scattermapbox"
1179
+ }
1180
+ ],
1181
+ "scatterpolar": [
1182
+ {
1183
+ "marker": {
1184
+ "colorbar": {
1185
+ "outlinewidth": 0,
1186
+ "ticks": ""
1187
+ }
1188
+ },
1189
+ "type": "scatterpolar"
1190
+ }
1191
+ ],
1192
+ "scatterpolargl": [
1193
+ {
1194
+ "marker": {
1195
+ "colorbar": {
1196
+ "outlinewidth": 0,
1197
+ "ticks": ""
1198
+ }
1199
+ },
1200
+ "type": "scatterpolargl"
1201
+ }
1202
+ ],
1203
+ "scatterternary": [
1204
+ {
1205
+ "marker": {
1206
+ "colorbar": {
1207
+ "outlinewidth": 0,
1208
+ "ticks": ""
1209
+ }
1210
+ },
1211
+ "type": "scatterternary"
1212
+ }
1213
+ ],
1214
+ "surface": [
1215
+ {
1216
+ "colorbar": {
1217
+ "outlinewidth": 0,
1218
+ "ticks": ""
1219
+ },
1220
+ "colorscale": [
1221
+ [
1222
+ 0,
1223
+ "#0d0887"
1224
+ ],
1225
+ [
1226
+ 0.1111111111111111,
1227
+ "#46039f"
1228
+ ],
1229
+ [
1230
+ 0.2222222222222222,
1231
+ "#7201a8"
1232
+ ],
1233
+ [
1234
+ 0.3333333333333333,
1235
+ "#9c179e"
1236
+ ],
1237
+ [
1238
+ 0.4444444444444444,
1239
+ "#bd3786"
1240
+ ],
1241
+ [
1242
+ 0.5555555555555556,
1243
+ "#d8576b"
1244
+ ],
1245
+ [
1246
+ 0.6666666666666666,
1247
+ "#ed7953"
1248
+ ],
1249
+ [
1250
+ 0.7777777777777778,
1251
+ "#fb9f3a"
1252
+ ],
1253
+ [
1254
+ 0.8888888888888888,
1255
+ "#fdca26"
1256
+ ],
1257
+ [
1258
+ 1,
1259
+ "#f0f921"
1260
+ ]
1261
+ ],
1262
+ "type": "surface"
1263
+ }
1264
+ ],
1265
+ "table": [
1266
+ {
1267
+ "cells": {
1268
+ "fill": {
1269
+ "color": "#EBF0F8"
1270
+ },
1271
+ "line": {
1272
+ "color": "white"
1273
+ }
1274
+ },
1275
+ "header": {
1276
+ "fill": {
1277
+ "color": "#C8D4E3"
1278
+ },
1279
+ "line": {
1280
+ "color": "white"
1281
+ }
1282
+ },
1283
+ "type": "table"
1284
+ }
1285
+ ]
1286
+ },
1287
+ "layout": {
1288
+ "font": {
1289
+ "family": "Franklin Gothic",
1290
+ "size": 12
1291
+ }
1292
+ }
1293
+ },
1294
+ "title": {
1295
+ "text": "Types of Disease"
1296
+ },
1297
+ "width": 900
1298
+ }
1299
+ }
1300
+ },
1301
+ "metadata": {},
1302
+ "output_type": "display_data"
1303
+ }
1304
+ ],
1305
+ "source": [
1306
+ "temp=dict(layout=go.Layout(font=dict(family=\"Franklin Gothic\", size=12)))\n",
1307
+ "disease_count = new_data[\"prognosis\"].value_counts().reset_index()\n",
1308
+ "fig = go.Figure()\n",
1309
+ "fig.add_trace(go.Bar(\n",
1310
+ " y=disease_count[\"index\"],\n",
1311
+ " x=disease_count[\"prognosis\"],\n",
1312
+ " orientation='h'\n",
1313
+ "))\n",
1314
+ "\n",
1315
+ "fig.update_layout( template=temp, title=\"Types of Disease\", height=1000, width=900)"
1316
+ ]
1317
+ },
1318
+ {
1319
+ "cell_type": "code",
1320
+ "execution_count": 18,
1321
+ "metadata": {},
1322
+ "outputs": [],
1323
+ "source": [
1324
+ "from sklearn.metrics import confusion_matrix\n",
1325
+ "from sklearn.metrics import classification_report\n"
1326
+ ]
1327
+ },
1328
+ {
1329
+ "cell_type": "code",
1330
+ "execution_count": 19,
1331
+ "metadata": {},
1332
+ "outputs": [],
1333
+ "source": [
1334
+ "from sklearn.ensemble import RandomForestClassifier\n",
1335
+ "model = RandomForestClassifier(n_estimators=100)\n",
1336
+ "model.fit(X_train, y_train)\n",
1337
+ "y_pred = model.predict(X_test)"
1338
+ ]
1339
+ },
1340
+ {
1341
+ "cell_type": "code",
1342
+ "execution_count": 20,
1343
+ "metadata": {},
1344
+ "outputs": [
1345
+ {
1346
+ "data": {
1347
+ "text/plain": [
1348
+ "(42, 135)"
1349
+ ]
1350
+ },
1351
+ "execution_count": 20,
1352
+ "metadata": {},
1353
+ "output_type": "execute_result"
1354
+ }
1355
+ ],
1356
+ "source": [
1357
+ "X_test.shape"
1358
+ ]
1359
+ },
1360
+ {
1361
+ "cell_type": "code",
1362
+ "execution_count": 21,
1363
+ "metadata": {},
1364
+ "outputs": [
1365
+ {
1366
+ "data": {
1367
+ "text/plain": [
1368
+ "<AxesSubplot: >"
1369
+ ]
1370
+ },
1371
+ "execution_count": 21,
1372
+ "metadata": {},
1373
+ "output_type": "execute_result"
1374
+ },
1375
+ {
1376
+ "data": {
1377
+ "image/png": "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",
1378
+ "text/plain": [
1379
+ "<Figure size 640x480 with 2 Axes>"
1380
+ ]
1381
+ },
1382
+ "metadata": {},
1383
+ "output_type": "display_data"
1384
+ }
1385
+ ],
1386
+ "source": [
1387
+ "conf_matrix = confusion_matrix(y_test,y_pred) \n",
1388
+ "df_conf = pd.DataFrame(conf_matrix)\n",
1389
+ "sns.heatmap(df_conf)"
1390
+ ]
1391
+ },
1392
+ {
1393
+ "cell_type": "code",
1394
+ "execution_count": 22,
1395
+ "metadata": {},
1396
+ "outputs": [
1397
+ {
1398
+ "name": "stdout",
1399
+ "output_type": "stream",
1400
+ "text": [
1401
+ "Classification Report:\n",
1402
+ " precision recall f1-score support\n",
1403
+ "\n",
1404
+ " 0 1.00 1.00 1.00 1\n",
1405
+ " 1 1.00 1.00 1.00 1\n",
1406
+ " 2 1.00 1.00 1.00 1\n",
1407
+ " 3 1.00 1.00 1.00 1\n",
1408
+ " 4 1.00 1.00 1.00 1\n",
1409
+ " 5 1.00 1.00 1.00 1\n",
1410
+ " 6 1.00 1.00 1.00 1\n",
1411
+ " 7 1.00 1.00 1.00 1\n",
1412
+ " 8 1.00 1.00 1.00 1\n",
1413
+ " 9 1.00 1.00 1.00 1\n",
1414
+ " 10 1.00 1.00 1.00 1\n",
1415
+ " 11 1.00 1.00 1.00 1\n",
1416
+ " 12 1.00 1.00 1.00 1\n",
1417
+ " 13 1.00 1.00 1.00 1\n",
1418
+ " 14 1.00 1.00 1.00 1\n",
1419
+ " 15 1.00 1.00 1.00 1\n",
1420
+ " 16 1.00 1.00 1.00 1\n",
1421
+ " 17 1.00 1.00 1.00 1\n",
1422
+ " 18 1.00 1.00 1.00 1\n",
1423
+ " 19 1.00 1.00 1.00 1\n",
1424
+ " 20 1.00 1.00 1.00 1\n",
1425
+ " 21 1.00 1.00 1.00 1\n",
1426
+ " 22 1.00 1.00 1.00 1\n",
1427
+ " 23 1.00 1.00 1.00 1\n",
1428
+ " 24 1.00 1.00 1.00 1\n",
1429
+ " 25 1.00 1.00 1.00 1\n",
1430
+ " 26 1.00 1.00 1.00 1\n",
1431
+ " 27 1.00 1.00 1.00 1\n",
1432
+ " 28 1.00 1.00 1.00 1\n",
1433
+ " 29 1.00 1.00 1.00 1\n",
1434
+ " 30 1.00 1.00 1.00 1\n",
1435
+ " 31 1.00 1.00 1.00 1\n",
1436
+ " 32 1.00 1.00 1.00 1\n",
1437
+ " 33 1.00 1.00 1.00 1\n",
1438
+ " 34 1.00 1.00 1.00 1\n",
1439
+ " 35 1.00 1.00 1.00 1\n",
1440
+ " 36 1.00 1.00 1.00 1\n",
1441
+ " 37 1.00 1.00 1.00 1\n",
1442
+ " 38 1.00 1.00 1.00 1\n",
1443
+ " 39 1.00 1.00 1.00 1\n",
1444
+ " 40 1.00 1.00 1.00 1\n",
1445
+ " 41 1.00 1.00 1.00 1\n",
1446
+ "\n",
1447
+ " accuracy 1.00 42\n",
1448
+ " macro avg 1.00 1.00 1.00 42\n",
1449
+ "weighted avg 1.00 1.00 1.00 42\n",
1450
+ "\n"
1451
+ ]
1452
+ }
1453
+ ],
1454
+ "source": [
1455
+ "print(\"Classification Report:\\n\",classification_report(y_test, y_pred))"
1456
+ ]
1457
+ },
1458
+ {
1459
+ "cell_type": "code",
1460
+ "execution_count": 35,
1461
+ "metadata": {},
1462
+ "outputs": [
1463
+ {
1464
+ "data": {
1465
+ "text/plain": [
1466
+ "3"
1467
+ ]
1468
+ },
1469
+ "execution_count": 35,
1470
+ "metadata": {},
1471
+ "output_type": "execute_result"
1472
+ }
1473
+ ],
1474
+ "source": [
1475
+ "x = np.random.randint(0,2,135)\n",
1476
+ "x[-1]=6\n",
1477
+ "disease = model.predict([x])\n",
1478
+ "y[disease[0]]"
1479
+ ]
1480
+ },
1481
+ {
1482
+ "cell_type": "code",
1483
+ "execution_count": 25,
1484
+ "metadata": {},
1485
+ "outputs": [],
1486
+ "source": [
1487
+ "def showdis(i):\n",
1488
+ " for key,val in dic.items():\n",
1489
+ " if val==i:\n",
1490
+ " print(key)"
1491
+ ]
1492
+ },
1493
+ {
1494
+ "cell_type": "code",
1495
+ "execution_count": 26,
1496
+ "metadata": {},
1497
+ "outputs": [
1498
+ {
1499
+ "name": "stdout",
1500
+ "output_type": "stream",
1501
+ "text": [
1502
+ "Acne\n"
1503
+ ]
1504
+ }
1505
+ ],
1506
+ "source": [
1507
+ "showdis(y[disease[0]])"
1508
+ ]
1509
+ },
1510
+ {
1511
+ "cell_type": "code",
1512
+ "execution_count": 27,
1513
+ "metadata": {},
1514
+ "outputs": [
1515
+ {
1516
+ "data": {
1517
+ "text/plain": [
1518
+ "['model.joblib']"
1519
+ ]
1520
+ },
1521
+ "execution_count": 27,
1522
+ "metadata": {},
1523
+ "output_type": "execute_result"
1524
+ }
1525
+ ],
1526
+ "source": [
1527
+ "from joblib import dump\n",
1528
+ "dump(model, \"model.joblib\")"
1529
+ ]
1530
+ },
1531
+ {
1532
+ "cell_type": "code",
1533
+ "execution_count": 28,
1534
+ "metadata": {},
1535
+ "outputs": [
1536
+ {
1537
+ "data": {
1538
+ "text/plain": [
1539
+ "['disease.joblib']"
1540
+ ]
1541
+ },
1542
+ "execution_count": 28,
1543
+ "metadata": {},
1544
+ "output_type": "execute_result"
1545
+ }
1546
+ ],
1547
+ "source": [
1548
+ "from joblib import dump\n",
1549
+ "dump(dic, \"disease.joblib\")"
1550
+ ]
1551
+ },
1552
+ {
1553
+ "cell_type": "code",
1554
+ "execution_count": null,
1555
+ "metadata": {},
1556
+ "outputs": [],
1557
+ "source": []
1558
+ }
1559
+ ],
1560
+ "metadata": {
1561
+ "kernelspec": {
1562
+ "display_name": "Python 3",
1563
+ "language": "python",
1564
+ "name": "python3"
1565
+ },
1566
+ "language_info": {
1567
+ "codemirror_mode": {
1568
+ "name": "ipython",
1569
+ "version": 3
1570
+ },
1571
+ "file_extension": ".py",
1572
+ "mimetype": "text/x-python",
1573
+ "name": "python",
1574
+ "nbconvert_exporter": "python",
1575
+ "pygments_lexer": "ipython3",
1576
+ "version": "3.10.7"
1577
+ },
1578
+ "orig_nbformat": 4,
1579
+ "vscode": {
1580
+ "interpreter": {
1581
+ "hash": "d5cc8f536c771a0358b4576103dc0345879617bfdfc7539962347f0c8b6f9905"
1582
+ }
1583
+ }
1584
+ },
1585
+ "nbformat": 4,
1586
+ "nbformat_minor": 2
1587
+ }
disease.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c15d38410f26876702cd444e43e4119477424161fba293649f4a2872dad61ae
3
+ size 759
files/Testing.csv ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,abdominal_pain,abnormal_menstruation,acidity,acute_liver_failure,altered_sensorium,anxiety,back_pain,belly_pain,blackheads,bladder_discomfort,blister,blood_in_sputum,bloody_stool,blurred_and_distorted_vision,breathlessness,brittle_nails,bruising,burning_micturition,chest_pain,chills,cold_hands_and_feet,coma,congestion,constipation,continuous_feel_of_urine,continuous_sneezing,cough,cramps,dark_urine,dehydration,depression,diarrhoea,dyschromic_patches,distention_of_abdomen,dizziness,drying_and_tingling_lips,enlarged_thyroid,excessive_hunger,extra_marital_contacts,family_history,fast_heart_rate,fatigue,fluid_overload,fluid_overload.1,foul_smell_of urine,headache,high_fever,hip_joint_pain,history_of_alcohol_consumption,increased_appetite,indigestion,inflammatory_nails,internal_itching,irregular_sugar_level,irritability,irritation_in_anus,itching,joint_pain,knee_pain,lack_of_concentration,lethargy,loss_of_appetite,loss_of_balance,loss_of_smell,loss_of_taste,malaise,mild_fever,mood_swings,movement_stiffness,mucoid_sputum,muscle_pain,muscle_wasting,muscle_weakness,nausea,neck_pain,nodal_skin_eruptions,obesity,pain_behind_the_eyes,pain_during_bowel_movements,pain_in_anal_region,painful_walking,palpitations,passage_of_gases,patches_in_throat,phlegm,polyuria,prominent_veins_on_calf,puffy_face_and_eyes,pus_filled_pimples,receiving_blood_transfusion,receiving_unsterile_injections,red_sore_around_nose,red_spots_over_body,redness_of_eyes,restlessness,runny_nose,rusty_sputum,scurrying,shivering,silver_like_dusting,sinus_pressure,skin_peeling,skin_rash,slurred_speech,small_dents_in_nails,spinning_movements,spotting_urination,stiff_neck,stomach_bleeding,stomach_pain,sunken_eyes,sweating,swelled_lymph_nodes,swelling_joints,swelling_of_stomach,swollen_blood_vessels,swollen_extremities,swollen_legs,throat_irritation,tiredness,toxic_look_(typhus),ulcers_on_tongue,unsteadiness,visual_disturbances,vomiting,watering_from_eyes,weakness_in_limbs,weakness_of_one_body_side,weight_gain,weight_loss,yellow_crust_ooze,yellow_urine,yellowing_of_eyes,yellowish_skin,prognosis,symptoms
2
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS,4
3
+ 1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Acne,4
4
+ 2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,Alcoholic hepatitis,7
5
+ 3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,Allergy,4
6
+ 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis,5
7
+ 5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma,6
8
+ 6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,Cervical spondylosis,5
9
+ 7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox,11
10
+ 8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Chronic cholestasis,7
11
+ 9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold,17
12
+ 10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Covid,4
13
+ 11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Dengue,14
14
+ 12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Diabetes ,10
15
+ 13,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemorrhoids(piles),5
16
+ 14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction,5
17
+ 15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection,4
18
+ 16,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,GERD,6
19
+ 17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Gastroenteritis,4
20
+ 18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Heart attack,4
21
+ 19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis A,11
22
+ 20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Hepatitis B,12
23
+ 21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Hepatitis C,6
24
+ 22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis D,9
25
+ 23,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis E,13
26
+ 24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension ,5
27
+ 25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Hyperthyroidism,11
28
+ 26,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Hypoglycemia,12
29
+ 27,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,Hypothyroidism,13
30
+ 28,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,Impetigo,5
31
+ 29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,Jaundice,8
32
+ 30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Malaria,8
33
+ 31,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Migraine,9
34
+ 32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthritis,6
35
+ 33,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,Paralysis (brain hemorrhage),4
36
+ 34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,Paroxysmal Positional Vertigo,6
37
+ 35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Peptic ulcer disease,6
38
+ 36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia,11
39
+ 37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Psoriasis,6
40
+ 38,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,Tuberculosis,16
41
+ 39,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,Typhoid,11
42
+ 40,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection,4
43
+ 41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins,7
files/Training.csv ADDED
@@ -0,0 +1,307 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ abdominal_pain,abnormal_menstruation,acidity,acute_liver_failure,altered_sensorium,anxiety,back_pain,belly_pain,blackheads,bladder_discomfort,blister,blood_in_sputum,bloody_stool,blurred_and_distorted_vision,breathlessness,brittle_nails,bruising,burning_micturition,chest_pain,chills,cold_hands_and_feet,coma,congestion,constipation,continuous_feel_of_urine,continuous_sneezing,cough,cramps,dark_urine,dehydration,depression,diarrhoea,dyschromic_patches,distention_of_abdomen,dizziness,drying_and_tingling_lips,enlarged_thyroid,excessive_hunger,extra_marital_contacts,family_history,fast_heart_rate,fatigue,fluid_overload,fluid_overload.1,foul_smell_of urine,headache,high_fever,hip_joint_pain,history_of_alcohol_consumption,increased_appetite,indigestion,inflammatory_nails,internal_itching,irregular_sugar_level,irritability,irritation_in_anus,itching,joint_pain,knee_pain,lack_of_concentration,lethargy,loss_of_appetite,loss_of_balance,loss_of_smell,loss_of_taste,malaise,mild_fever,mood_swings,movement_stiffness,mucoid_sputum,muscle_pain,muscle_wasting,muscle_weakness,nausea,neck_pain,nodal_skin_eruptions,obesity,pain_behind_the_eyes,pain_during_bowel_movements,pain_in_anal_region,painful_walking,palpitations,passage_of_gases,patches_in_throat,phlegm,polyuria,prominent_veins_on_calf,puffy_face_and_eyes,pus_filled_pimples,receiving_blood_transfusion,receiving_unsterile_injections,red_sore_around_nose,red_spots_over_body,redness_of_eyes,restlessness,runny_nose,rusty_sputum,scurrying,shivering,silver_like_dusting,sinus_pressure,skin_peeling,skin_rash,slurred_speech,small_dents_in_nails,spinning_movements,spotting_urination,stiff_neck,stomach_bleeding,stomach_pain,sunken_eyes,sweating,swelled_lymph_nodes,swelling_joints,swelling_of_stomach,swollen_blood_vessels,swollen_extremities,swollen_legs,throat_irritation,tiredness,toxic_look_(typhus),ulcers_on_tongue,unsteadiness,visual_disturbances,vomiting,watering_from_eyes,weakness_in_limbs,weakness_of_one_body_side,weight_gain,weight_loss,yellow_crust_ooze,yellow_urine,yellowing_of_eyes,yellowish_skin,prognosis
2
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS
3
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS
4
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS
5
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS
6
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AIDS
7
+ 0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Acne
8
+ 0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Acne
9
+ 0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Acne
10
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Acne
11
+ 0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Acne
12
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,Alcoholic hepatitis
13
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,Alcoholic hepatitis
14
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,Alcoholic hepatitis
15
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,Alcoholic hepatitis
16
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,Alcoholic hepatitis
17
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,Alcoholic hepatitis
18
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Alcoholic hepatitis
19
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,Alcoholic hepatitis
20
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,Allergy
21
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,Allergy
22
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Allergy
23
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,Allergy
24
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,Allergy
25
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis
26
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis
27
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis
28
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis
29
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis
30
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Arthritis
31
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma
32
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma
33
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma
34
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma
35
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma
36
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma
37
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Bronchial Asthma
38
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,Cervical spondylosis
39
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,Cervical spondylosis
40
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,Cervical spondylosis
41
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Cervical spondylosis
42
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,Cervical spondylosis
43
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,Cervical spondylosis
44
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox
45
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox
46
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox
47
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox
48
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox
49
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox
50
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox
51
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox
52
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox
53
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Chicken pox
54
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Chronic cholestasis
55
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,Chronic cholestasis
56
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,Chronic cholestasis
57
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Chronic cholestasis
58
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Chronic cholestasis
59
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Chronic cholestasis
60
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Chronic cholestasis
61
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Chronic cholestasis
62
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold
63
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold
64
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold
65
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold
66
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold
67
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold
68
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold
69
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold
70
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Common Cold
71
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Covid
72
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Covid
73
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dengue
74
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Dengue
75
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Dengue
76
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Dengue
77
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Dengue
78
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Dengue
79
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Dengue
80
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Dengue
81
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Dengue
82
+ 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Dengue
83
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Diabetes
84
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Diabetes
85
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Diabetes
86
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Diabetes
87
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Diabetes
88
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Diabetes
89
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Diabetes
90
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Diabetes
91
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Diabetes
92
+ 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemorrhoids(piles)
93
+ 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemorrhoids(piles)
94
+ 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemorrhoids(piles)
95
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemorrhoids(piles)
96
+ 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemorrhoids(piles)
97
+ 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Dimorphic hemorrhoids(piles)
98
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction
99
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction
100
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction
101
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction
102
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction
103
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Drug Reaction
104
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection
105
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection
106
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection
107
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection
108
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Fungal infection
109
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,GERD
110
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,GERD
111
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,GERD
112
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,GERD
113
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,GERD
114
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,GERD
115
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,GERD
116
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Gastroenteritis
117
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Gastroenteritis
118
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Gastroenteritis
119
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Gastroenteritis
120
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Gastroenteritis
121
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Heart attack
122
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Heart attack
123
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Heart attack
124
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Heart attack
125
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Heart attack
126
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis A
127
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis A
128
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis A
129
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis A
130
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis A
131
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,Hepatitis A
132
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Hepatitis A
133
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis A
134
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis A
135
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Hepatitis B
136
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Hepatitis B
137
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Hepatitis B
138
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Hepatitis B
139
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Hepatitis B
140
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Hepatitis B
141
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Hepatitis B
142
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,Hepatitis B
143
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,Hepatitis B
144
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Hepatitis C
145
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Hepatitis C
146
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Hepatitis C
147
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,Hepatitis C
148
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Hepatitis C
149
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Hepatitis C
150
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,Hepatitis C
151
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,Hepatitis D
152
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis D
153
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis D
154
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis D
155
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis D
156
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis D
157
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Hepatitis D
158
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis D
159
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis D
160
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,Hepatitis D
161
+ 1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis E
162
+ 1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis E
163
+ 1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,Hepatitis E
164
+ 1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis E
165
+ 1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis E
166
+ 1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis E
167
+ 1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis E
168
+ 1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,Hepatitis E
169
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,Hepatitis E
170
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension
171
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension
172
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension
173
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension
174
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension
175
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypertension
176
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Hyperthyroidism
177
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Hyperthyroidism
178
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Hyperthyroidism
179
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Hyperthyroidism
180
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Hyperthyroidism
181
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hyperthyroidism
182
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Hyperthyroidism
183
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Hyperthyroidism
184
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,Hyperthyroidism
185
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Hypoglycemia
186
+ 0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Hypoglycemia
187
+ 0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Hypoglycemia
188
+ 0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypoglycemia
189
+ 0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Hypoglycemia
190
+ 0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Hypoglycemia
191
+ 0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Hypoglycemia
192
+ 0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Hypoglycemia
193
+ 0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Hypoglycemia
194
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,Hypothyroidism
195
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,Hypothyroidism
196
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,Hypothyroidism
197
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,Hypothyroidism
198
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,Hypothyroidism
199
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Hypothyroidism
200
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,Hypothyroidism
201
+ 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,Hypothyroidism
202
+ 0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Impetigo
203
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,Impetigo
204
+ 0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,Impetigo
205
+ 0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,Impetigo
206
+ 0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,Impetigo
207
+ 0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,Impetigo
208
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,Jaundice
209
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,Jaundice
210
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,Jaundice
211
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,Jaundice
212
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,Jaundice
213
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,Jaundice
214
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,Jaundice
215
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,Jaundice
216
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,Jaundice
217
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Malaria
218
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Malaria
219
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Malaria
220
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Malaria
221
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Malaria
222
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Malaria
223
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Malaria
224
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Malaria
225
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Migraine
226
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Migraine
227
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Migraine
228
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Migraine
229
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Migraine
230
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Migraine
231
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Migraine
232
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Migraine
233
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Migraine
234
+ 0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,Migraine
235
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthritis
236
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthritis
237
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthritis
238
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthritis
239
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthritis
240
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthritis
241
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Osteoarthritis
242
+ 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,Paralysis (brain hemorrhage)
243
+ 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,Paralysis (brain hemorrhageH
244
+ 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,Paralysis (brain hemorrhage)
245
+ 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Paralysis (brain hemorrhage)
246
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,Paralysis (brain hemorrhage)
247
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,Paroxysmal Positional Vertigo
248
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Paroxysmal Positional Vertigo
249
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,Paroxysmal Positional Vertigo
250
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,Paroxysmal Positional Vertigo
251
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,Paroxysmal Positional Vertigo
252
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,Paroxysmal Positional Vertigo
253
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,Paroxysmal Positional Vertigo
254
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Peptic ulcer disease
255
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Peptic ulcer disease
256
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Peptic ulcer disease
257
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Peptic ulcer disease
258
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Peptic ulcer disease
259
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Peptic ulcer disease
260
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Peptic ulcer disease
261
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia
262
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia
263
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia
264
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia
265
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia
266
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia
267
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia
268
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia
269
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Pneumonia
270
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Psoriasis
271
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Psoriasis
272
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Psoriasis
273
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Psoriasis
274
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Psoriasis
275
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Psoriasis
276
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Psoriasis
277
+ 0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,Tuberculosis
278
+ 0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,Tuberculosis
279
+ 0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,Tuberculosis
280
+ 0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,Tuberculosis
281
+ 0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,Tuberculosis
282
+ 0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,Tuberculosis
283
+ 0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,Tuberculosis
284
+ 0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,Tuberculosis
285
+ 0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,Tuberculosis
286
+ 1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,Typhoid
287
+ 0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,Typhoid
288
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,Typhoid
289
+ 1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,Typhoid
290
+ 1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,Typhoid
291
+ 1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,Typhoid
292
+ 1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,Typhoid
293
+ 1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,Typhoid
294
+ 1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,Typhoid
295
+ 0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection
296
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection
297
+ 0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection
298
+ 0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection
299
+ 0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Urinary tract infection
300
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins
301
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins
302
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins
303
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins
304
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins
305
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins
306
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins
307
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Varicose veins
files/dataset.csv ADDED
@@ -0,0 +1,314 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Disease,Symptom_0,Symptom_1,Symptom_2,Symptom_3,Symptom_4,Symptom_5,Symptom_6,Symptom_7,Symptom_8,Symptom_9,Symptom_10,Symptom_11,Symptom_12,Symptom_13,Symptom_14,Symptom_15,Symptom_16
2
+ AIDS, muscle_wasting, patches_in_throat, high_fever, extra_marital_contacts,null,null,null,null,null,null,null,null,null,null,null,null,null
3
+ AIDS, patches_in_throat, high_fever, extra_marital_contacts,null,null,null,null,null,null,null,null,null,null,null,null,null,null
4
+ AIDS, muscle_wasting, high_fever, extra_marital_contacts,null,null,null,null,null,null,null,null,null,null,null,null,null,null
5
+ AIDS, muscle_wasting, patches_in_throat, extra_marital_contacts,null,null,null,null,null,null,null,null,null,null,null,null,null,null
6
+ AIDS, muscle_wasting, patches_in_throat, high_fever,null,null,null,null,null,null,null,null,null,null,null,null,null,null
7
+ Acne, skin_rash, pus_filled_pimples, blackheads, scurrying,null,null,null,null,null,null,null,null,null,null,null,null,null
8
+ Acne, pus_filled_pimples, blackheads, scurrying,null,null,null,null,null,null,null,null,null,null,null,null,null,null
9
+ Acne, skin_rash, blackheads, scurrying,null,null,null,null,null,null,null,null,null,null,null,null,null,null
10
+ Acne, skin_rash, pus_filled_pimples, scurrying,null,null,null,null,null,null,null,null,null,null,null,null,null,null
11
+ Acne, skin_rash, pus_filled_pimples, blackheads,null,null,null,null,null,null,null,null,null,null,null,null,null,null
12
+ Alcoholic hepatitis, vomiting, yellowish_skin, swelling_of_stomach, distention_of_abdomen, history_of_alcohol_consumption, fluid_overload,null,null,null,null,null,null,null,null,null,null,null
13
+ Alcoholic hepatitis, yellowish_skin, abdominal_pain, swelling_of_stomach, distention_of_abdomen, history_of_alcohol_consumption, fluid_overload,null,null,null,null,null,null,null,null,null,null,null
14
+ Alcoholic hepatitis, vomiting, yellowish_skin, abdominal_pain, swelling_of_stomach, distention_of_abdomen, history_of_alcohol_consumption,null,null,null,null,null,null,null,null,null,null,null
15
+ Alcoholic hepatitis, vomiting, yellowish_skin, abdominal_pain, swelling_of_stomach, distention_of_abdomen, fluid_overload,null,null,null,null,null,null,null,null,null,null,null
16
+ Alcoholic hepatitis, vomiting, yellowish_skin, abdominal_pain, swelling_of_stomach, history_of_alcohol_consumption, fluid_overload,null,null,null,null,null,null,null,null,null,null,null
17
+ Alcoholic hepatitis, vomiting, yellowish_skin, abdominal_pain, distention_of_abdomen, history_of_alcohol_consumption, fluid_overload,null,null,null,null,null,null,null,null,null,null,null
18
+ Alcoholic hepatitis, vomiting, abdominal_pain, swelling_of_stomach, distention_of_abdomen, history_of_alcohol_consumption, fluid_overload,null,null,null,null,null,null,null,null,null,null,null
19
+ Alcoholic hepatitis, vomiting, yellowish_skin, abdominal_pain, swelling_of_stomach, distention_of_abdomen, history_of_alcohol_consumption, fluid_overload,null,null,null,null,null,null,null,null,null,null
20
+ Allergy, shivering, chills, watering_from_eyes,null,null,null,null,null,null,null,null,null,null,null,null,null,null
21
+ Allergy, continuous_sneezing, shivering, watering_from_eyes,null,null,null,null,null,null,null,null,null,null,null,null,null,null
22
+ Allergy, continuous_sneezing, shivering, chills,null,null,null,null,null,null,null,null,null,null,null,null,null,null
23
+ Allergy, continuous_sneezing, shivering, chills,watering_from_eyes,null,null,null,null,null,null,null,null,null,null,null,null,null
24
+ Allergy, continuous_sneezing, chills, watering_from_eyes,null,null,null,null,null,null,null,null,null,null,null,null,null,null
25
+ Arthritis, muscle_weakness, stiff_neck, swelling_joints, movement_stiffness, painful_walking,null,null,null,null,null,null,null,null,null,null,null,null
26
+ Arthritis, stiff_neck, swelling_joints, movement_stiffness, painful_walking,null,null,null,null,null,null,null,null,null,null,null,null,null
27
+ Arthritis, muscle_weakness, swelling_joints, movement_stiffness, painful_walking,null,null,null,null,null,null,null,null,null,null,null,null,null
28
+ Arthritis, muscle_weakness, stiff_neck, movement_stiffness, painful_walking,null,null,null,null,null,null,null,null,null,null,null,null,null
29
+ Arthritis, muscle_weakness, stiff_neck, swelling_joints, painful_walking,null,null,null,null,null,null,null,null,null,null,null,null,null
30
+ Arthritis, muscle_weakness, stiff_neck, swelling_joints, movement_stiffness,null,null,null,null,null,null,null,null,null,null,null,null,null
31
+ Bronchial Asthma, fatigue, cough, high_fever, breathlessness, family_history, mucoid_sputum,null,null,null,null,null,null,null,null,null,null,null
32
+ Bronchial Asthma, fatigue, cough, breathlessness, family_history, mucoid_sputum,null,null,null,null,null,null,null,null,null,null,null,null
33
+ Bronchial Asthma, fatigue, cough, high_fever, family_history, mucoid_sputum,null,null,null,null,null,null,null,null,null,null,null,null
34
+ Bronchial Asthma, fatigue, cough, high_fever, breathlessness, mucoid_sputum,null,null,null,null,null,null,null,null,null,null,null,null
35
+ Bronchial Asthma, fatigue, cough, high_fever, breathlessness, family_history,null,null,null,null,null,null,null,null,null,null,null,null
36
+ Bronchial Asthma, cough, high_fever, breathlessness, family_history, mucoid_sputum,null,null,null,null,null,null,null,null,null,null,null,null
37
+ Bronchial Asthma, fatigue, high_fever, breathlessness, family_history, mucoid_sputum,null,null,null,null,null,null,null,null,null,null,null,null
38
+ Cervical spondylosis, back_pain, weakness_in_limbs, neck_pain, dizziness, loss_of_balance,null,null,null,null,null,null,null,null,null,null,null,null
39
+ Cervical spondylosis, weakness_in_limbs, neck_pain, dizziness, loss_of_balance,null,null,null,null,null,null,null,null,null,null,null,null,null
40
+ Cervical spondylosis, back_pain, neck_pain, dizziness, loss_of_balance,null,null,null,null,null,null,null,null,null,null,null,null,null
41
+ Cervical spondylosis, back_pain, weakness_in_limbs, dizziness, loss_of_balance,null,null,null,null,null,null,null,null,null,null,null,null,null
42
+ Cervical spondylosis, back_pain, weakness_in_limbs, neck_pain, dizziness,null,null,null,null,null,null,null,null,null,null,null,null,null
43
+ Cervical spondylosis, back_pain, weakness_in_limbs, neck_pain, loss_of_balance,null,null,null,null,null,null,null,null,null,null,null,null,null
44
+ Chicken pox,itching, skin_rash, fatigue, lethargy, high_fever, headache, loss_of_appetite, mild_fever, swelled_lymph_nodes, malaise, red_spots_over_body,null,null,null,null,null,null
45
+ Chicken pox,itching, skin_rash, fatigue, lethargy, headache, loss_of_appetite, mild_fever, swelled_lymph_nodes, malaise, red_spots_over_body,null,null,null,null,null,null,null
46
+ Chicken pox,itching, skin_rash, fatigue, lethargy, high_fever, loss_of_appetite, mild_fever, swelled_lymph_nodes, malaise, red_spots_over_body,null,null,null,null,null,null,null
47
+ Chicken pox,itching, skin_rash, fatigue, lethargy, high_fever, headache, mild_fever, swelled_lymph_nodes, malaise, red_spots_over_body,null,null,null,null,null,null,null
48
+ Chicken pox,itching, skin_rash, fatigue, lethargy, high_fever, headache, loss_of_appetite, mild_fever, malaise, red_spots_over_body,null,null,null,null,null,null,null
49
+ Chicken pox, skin_rash, fatigue, lethargy, high_fever, headache, loss_of_appetite, mild_fever, swelled_lymph_nodes, malaise, red_spots_over_body,null,null,null,null,null,null,null
50
+ Chicken pox,itching, skin_rash, fatigue, lethargy, high_fever, headache, loss_of_appetite, swelled_lymph_nodes, malaise, red_spots_over_body,null,null,null,null,null,null,null
51
+ Chicken pox,itching, fatigue, lethargy, high_fever, headache, loss_of_appetite, mild_fever, swelled_lymph_nodes, malaise, red_spots_over_body,null,null,null,null,null,null,null
52
+ Chicken pox,itching, skin_rash, lethargy, high_fever, headache, loss_of_appetite, mild_fever, swelled_lymph_nodes, malaise, red_spots_over_body,null,null,null,null,null,null,null
53
+ Chicken pox,itching, skin_rash, fatigue, high_fever, headache, loss_of_appetite, mild_fever, swelled_lymph_nodes, malaise, red_spots_over_body,null,null,null,null,null,null,null
54
+ Chronic cholestasis, vomiting, yellowish_skin, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null,null,null
55
+ Chronic cholestasis,itching, vomiting, yellowish_skin, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null,null,null
56
+ Chronic cholestasis,itching, vomiting, yellowish_skin, nausea, loss_of_appetite, yellowing_of_eyes,null,null,null,null,null,null,null,null,null,null,null
57
+ Chronic cholestasis,itching, vomiting, yellowish_skin, nausea, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null,null,null
58
+ Chronic cholestasis,itching, vomiting, yellowish_skin, nausea, loss_of_appetite, abdominal_pain,null,null,null,null,null,null,null,null,null,null,null
59
+ Chronic cholestasis,itching, vomiting, yellowish_skin, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null,null
60
+ Chronic cholestasis,itching, vomiting, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null,null,null
61
+ Chronic cholestasis,itching, yellowish_skin, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null,null,null
62
+ Common Cold, continuous_sneezing, chills, fatigue, cough, high_fever, swelled_lymph_nodes, malaise, phlegm, throat_irritation, redness_of_eyes, sinus_pressure, runny_nose, congestion, chest_pain, loss_of_smell, muscle_pain,null
63
+ Common Cold, continuous_sneezing, fatigue, cough, high_fever, headache, swelled_lymph_nodes, malaise, phlegm, throat_irritation, redness_of_eyes, sinus_pressure, runny_nose, congestion, chest_pain, loss_of_smell, muscle_pain,null
64
+ Common Cold, continuous_sneezing, chills, fatigue, cough, high_fever, headache, swelled_lymph_nodes, malaise, phlegm, throat_irritation, redness_of_eyes, sinus_pressure, runny_nose, congestion, chest_pain, loss_of_smell, muscle_pain
65
+ Common Cold, continuous_sneezing, chills, fatigue, cough, headache, swelled_lymph_nodes, malaise, phlegm, throat_irritation, redness_of_eyes, sinus_pressure, runny_nose, congestion, chest_pain, loss_of_smell, muscle_pain,null
66
+ Common Cold, continuous_sneezing, chills, fatigue, cough, high_fever, headache, malaise, phlegm, throat_irritation, redness_of_eyes, sinus_pressure, runny_nose, congestion, chest_pain, loss_of_smell, muscle_pain,null
67
+ Common Cold, continuous_sneezing, chills, fatigue, cough, high_fever, headache, swelled_lymph_nodes, phlegm, throat_irritation, redness_of_eyes, sinus_pressure, runny_nose, congestion, chest_pain, loss_of_smell, muscle_pain,null
68
+ Common Cold, chills, fatigue, cough, high_fever, headache, swelled_lymph_nodes, malaise, phlegm, throat_irritation, redness_of_eyes, sinus_pressure, runny_nose, congestion, chest_pain, loss_of_smell, muscle_pain,null
69
+ Common Cold, continuous_sneezing, chills, cough, high_fever, headache, swelled_lymph_nodes, malaise, phlegm, throat_irritation, redness_of_eyes, sinus_pressure, runny_nose, congestion, chest_pain, loss_of_smell, muscle_pain,null
70
+ Common Cold, continuous_sneezing, chills, fatigue, high_fever, headache, swelled_lymph_nodes, malaise, phlegm, throat_irritation, redness_of_eyes, sinus_pressure, runny_nose, congestion, chest_pain, loss_of_smell, muscle_pain,null
71
+ Covid,tiredness, high_fever, loss_of_taste,cough,null,null,null,null,null,null,null,null,null,null,null,null,null
72
+ Covid, high_fever, loss_of_taste, cough, tiredness,null,null,null,null,null,null,null,null,null,null,null,null,null
73
+ Covid,cough, high_fever, tiredness, loss_of_taste,null,null,null,null,null,null,null,null,null,null,null,null,null
74
+ Covid,loss_of_taste, tiredness, high_fever, cough,null,null,null,null,null,null,null,null,null,null,null,null,null
75
+ Covid, high_fever, cough, tiredness, loss_of_taste,null,null,null,null,null,null,null,null,null,null,null,null,null
76
+ Covid,tiredness, loss_of_smell, high_fever,cough,null,null,null,null,null,null,null,null,null,null,null,null,null
77
+ Covid,loss_of_smell, tiredness, high_fever,cough,null,null,null,null,null,null,null,null,null,null,null,null,null
78
+ Covid,loss_of_taste, cough, tiredness,high_fever,null,null,null,null,null,null,null,null,null,null,null,null,null
79
+ Covid, high_fever, tiredness, cough, loss_of_taste,null,null,null,null,null,null,null,null,null,null,null,null,null
80
+ Dengue, skin_rash, chills, joint_pain, vomiting, fatigue, headache, nausea, loss_of_appetite, pain_behind_the_eyes, back_pain, malaise, muscle_pain, red_spots_over_body,null,null,null,null
81
+ Dengue, skin_rash, chills, joint_pain, fatigue, high_fever, headache, nausea, loss_of_appetite, pain_behind_the_eyes, back_pain, malaise, muscle_pain, red_spots_over_body,null,null,null,null
82
+ Dengue, skin_rash, chills, joint_pain, vomiting, high_fever, headache, nausea, loss_of_appetite, pain_behind_the_eyes, back_pain, malaise, muscle_pain, red_spots_over_body,null,null,null,null
83
+ Dengue, skin_rash, chills, joint_pain, vomiting, fatigue, high_fever, headache, nausea, loss_of_appetite, pain_behind_the_eyes, back_pain, malaise, red_spots_over_body,null,null,null,null
84
+ Dengue, skin_rash, chills, joint_pain, vomiting, fatigue, high_fever, headache, nausea, loss_of_appetite, pain_behind_the_eyes, back_pain, muscle_pain, red_spots_over_body,null,null,null,null
85
+ Dengue, skin_rash, chills, joint_pain, vomiting, fatigue, high_fever, headache, nausea, loss_of_appetite, pain_behind_the_eyes, back_pain, malaise, muscle_pain, red_spots_over_body,null,null,null
86
+ Dengue, chills, joint_pain, vomiting, fatigue, high_fever, headache, nausea, loss_of_appetite, pain_behind_the_eyes, back_pain, malaise, muscle_pain, red_spots_over_body,null,null,null,null
87
+ Dengue, skin_rash, joint_pain, vomiting, fatigue, high_fever, headache, nausea, loss_of_appetite, pain_behind_the_eyes, back_pain, malaise, muscle_pain, red_spots_over_body,null,null,null,null
88
+ Dengue, skin_rash, chills, vomiting, fatigue, high_fever, headache, nausea, loss_of_appetite, pain_behind_the_eyes, back_pain, malaise, muscle_pain, red_spots_over_body,null,null,null,null
89
+ Dengue, skin_rash, chills, joint_pain, vomiting, fatigue, high_fever, headache, nausea, loss_of_appetite, pain_behind_the_eyes, back_pain, malaise, muscle_pain,null,null,null,null
90
+ Diabetes , fatigue, weight_loss, restlessness, lethargy, irregular_sugar_level, blurred_and_distorted_vision, obesity, increased_appetite, polyuria,null,null,null,null,null,null,null,null
91
+ Diabetes , weight_loss, restlessness, lethargy, irregular_sugar_level, blurred_and_distorted_vision, obesity, excessive_hunger, increased_appetite, polyuria,null,null,null,null,null,null,null,null
92
+ Diabetes , fatigue, weight_loss, restlessness, lethargy, irregular_sugar_level, blurred_and_distorted_vision, obesity, excessive_hunger, increased_appetite, polyuria,null,null,null,null,null,null,null
93
+ Diabetes , fatigue, weight_loss, restlessness, lethargy, irregular_sugar_level, obesity, excessive_hunger, increased_appetite, polyuria,null,null,null,null,null,null,null,null
94
+ Diabetes , fatigue, weight_loss, restlessness, lethargy, irregular_sugar_level, blurred_and_distorted_vision, excessive_hunger, increased_appetite, polyuria,null,null,null,null,null,null,null,null
95
+ Diabetes , fatigue, weight_loss, restlessness, irregular_sugar_level, blurred_and_distorted_vision, obesity, excessive_hunger, increased_appetite, polyuria,null,null,null,null,null,null,null,null
96
+ Diabetes , fatigue, weight_loss, lethargy, irregular_sugar_level, blurred_and_distorted_vision, obesity, excessive_hunger, increased_appetite, polyuria,null,null,null,null,null,null,null,null
97
+ Diabetes , fatigue, restlessness, lethargy, irregular_sugar_level, blurred_and_distorted_vision, obesity, excessive_hunger, increased_appetite, polyuria,null,null,null,null,null,null,null,null
98
+ Diabetes , fatigue, weight_loss, restlessness, lethargy, blurred_and_distorted_vision, obesity, excessive_hunger, increased_appetite, polyuria,null,null,null,null,null,null,null,null
99
+ Dimorphic hemorrhoids(piles), constipation, pain_during_bowel_movements, pain_in_anal_region, irritation_in_anus,null,null,null,null,null,null,null,null,null,null,null,null,null
100
+ Dimorphic hemorrhoids(piles), constipation, pain_during_bowel_movements, pain_in_anal_region, bloody_stool, irritation_in_anus,null,null,null,null,null,null,null,null,null,null,null,null
101
+ Dimorphic hemorrhoids(piles), constipation, pain_during_bowel_movements, bloody_stool, irritation_in_anus,null,null,null,null,null,null,null,null,null,null,null,null,null
102
+ Dimorphic hemorrhoids(piles), pain_during_bowel_movements, pain_in_anal_region, bloody_stool, irritation_in_anus,null,null,null,null,null,null,null,null,null,null,null,null,null
103
+ Dimorphic hemorrhoids(piles), constipation, pain_during_bowel_movements, pain_in_anal_region, bloody_stool,null,null,null,null,null,null,null,null,null,null,null,null,null
104
+ Dimorphic hemorrhoids(piles), constipation, pain_in_anal_region, bloody_stool, irritation_in_anus,null,null,null,null,null,null,null,null,null,null,null,null,null
105
+ Drug Reaction, skin_rash, stomach_pain, burning_micturition, spotting_urination,null,null,null,null,null,null,null,null,null,null,null,null,null
106
+ Drug Reaction,itching, skin_rash, stomach_pain, burning_micturition,null,null,null,null,null,null,null,null,null,null,null,null,null
107
+ Drug Reaction,itching, skin_rash, stomach_pain, spotting_urination,null,null,null,null,null,null,null,null,null,null,null,null,null
108
+ Drug Reaction,itching, skin_rash, burning_micturition, spotting_urination,null,null,null,null,null,null,null,null,null,null,null,null,null
109
+ Drug Reaction,itching, stomach_pain, burning_micturition, spotting_urination,null,null,null,null,null,null,null,null,null,null,null,null,null
110
+ Drug Reaction,itching, skin_rash, stomach_pain, burning_micturition, spotting_urination,null,null,null,null,null,null,null,null,null,null,null,null
111
+ Fungal infection,itching, skin_rash, nodal_skin_eruptions,dyschromic_patches,null,null,null,null,null,null,null,null,null,null,null,null,null
112
+ Fungal infection,itching, skin_rash, dyschromic_patches,null,null,null,null,null,null,null,null,null,null,null,null,null,null
113
+ Fungal infection, skin_rash, nodal_skin_eruptions, dyschromic_patches,null,null,null,null,null,null,null,null,null,null,null,null,null,null
114
+ Fungal infection,itching, nodal_skin_eruptions, dyschromic_patches,null,null,null,null,null,null,null,null,null,null,null,null,null,null
115
+ Fungal infection,itching, skin_rash, nodal_skin_eruptions,null,null,null,null,null,null,null,null,null,null,null,null,null,null
116
+ GERD, stomach_pain, acidity, vomiting, cough, chest_pain,null,null,null,null,null,null,null,null,null,null,null,null
117
+ GERD, stomach_pain, acidity, ulcers_on_tongue, cough, chest_pain,null,null,null,null,null,null,null,null,null,null,null,null
118
+ GERD, stomach_pain, acidity, ulcers_on_tongue, vomiting, chest_pain,null,null,null,null,null,null,null,null,null,null,null,null
119
+ GERD, stomach_pain, acidity, ulcers_on_tongue, vomiting, cough,null,null,null,null,null,null,null,null,null,null,null,null
120
+ GERD, acidity, ulcers_on_tongue, vomiting, cough, chest_pain,null,null,null,null,null,null,null,null,null,null,null,null
121
+ GERD, stomach_pain, acidity, ulcers_on_tongue, vomiting, cough, chest_pain,null,null,null,null,null,null,null,null,null,null,null
122
+ GERD, stomach_pain, ulcers_on_tongue, vomiting, cough, chest_pain,null,null,null,null,null,null,null,null,null,null,null,null
123
+ Gastroenteritis, vomiting, dehydration, diarrhoea,null,null,null,null,null,null,null,null,null,null,null,null,null,null
124
+ Gastroenteritis, vomiting, sunken_eyes, diarrhoea,null,null,null,null,null,null,null,null,null,null,null,null,null,null
125
+ Gastroenteritis, vomiting, sunken_eyes, dehydration,null,null,null,null,null,null,null,null,null,null,null,null,null,null
126
+ Gastroenteritis, vomiting, sunken_eyes, dehydration, diarrhoea,null,null,null,null,null,null,null,null,null,null,null,null,null
127
+ Gastroenteritis, sunken_eyes, dehydration, diarrhoea,null,null,null,null,null,null,null,null,null,null,null,null,null,null
128
+ Heart attack, vomiting, breathlessness, sweating, chest_pain,null,null,null,null,null,null,null,null,null,null,null,null,null
129
+ Heart attack, breathlessness, sweating, chest_pain,null,null,null,null,null,null,null,null,null,null,null,null,null,null
130
+ Heart attack, vomiting, breathlessness, sweating,null,null,null,null,null,null,null,null,null,null,null,null,null,null
131
+ Heart attack, vomiting, breathlessness, chest_pain,null,null,null,null,null,null,null,null,null,null,null,null,null,null
132
+ Heart attack, vomiting, sweating, chest_pain,null,null,null,null,null,null,null,null,null,null,null,null,null,null
133
+ Hepatitis A, joint_pain, vomiting, yellowish_skin, dark_urine, nausea, abdominal_pain, diarrhoea, mild_fever, yellowing_of_eyes, muscle_pain,null,null,null,null,null,null,null
134
+ Hepatitis A, joint_pain, vomiting, yellowish_skin, dark_urine, loss_of_appetite, abdominal_pain, diarrhoea, mild_fever, yellowing_of_eyes, muscle_pain,null,null,null,null,null,null,null
135
+ Hepatitis A, joint_pain, vomiting, yellowish_skin, nausea, loss_of_appetite, abdominal_pain, diarrhoea, mild_fever, yellowing_of_eyes, muscle_pain,null,null,null,null,null,null,null
136
+ Hepatitis A, joint_pain, vomiting, dark_urine, nausea, loss_of_appetite, abdominal_pain, diarrhoea, mild_fever, yellowing_of_eyes, muscle_pain,null,null,null,null,null,null,null
137
+ Hepatitis A, joint_pain, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, diarrhoea, mild_fever, yellowing_of_eyes, muscle_pain,null,null,null,null,null,null,null
138
+ Hepatitis A, vomiting, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, diarrhoea, mild_fever, yellowing_of_eyes, muscle_pain,null,null,null,null,null,null,null
139
+ Hepatitis A, joint_pain, vomiting, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, diarrhoea, mild_fever, yellowing_of_eyes, muscle_pain,null,null,null,null,null,null
140
+ Hepatitis A, joint_pain, vomiting, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, mild_fever, yellowing_of_eyes, muscle_pain,null,null,null,null,null,null,null
141
+ Hepatitis A, joint_pain, vomiting, yellowish_skin, dark_urine, nausea, loss_of_appetite, diarrhoea, mild_fever, yellowing_of_eyes, muscle_pain,null,null,null,null,null,null,null
142
+ Hepatitis B,itching, fatigue, yellowish_skin, dark_urine, loss_of_appetite, abdominal_pain, yellow_urine, yellowing_of_eyes, malaise, receiving_blood_transfusion, receiving_unsterile_injections,null,null,null,null,null,null
143
+ Hepatitis B,itching, fatigue, lethargy, dark_urine, loss_of_appetite, abdominal_pain, yellow_urine, yellowing_of_eyes, malaise, receiving_blood_transfusion, receiving_unsterile_injections,null,null,null,null,null,null
144
+ Hepatitis B,itching, fatigue, lethargy, yellowish_skin, loss_of_appetite, abdominal_pain, yellow_urine, yellowing_of_eyes, malaise, receiving_blood_transfusion, receiving_unsterile_injections,null,null,null,null,null,null
145
+ Hepatitis B,itching, fatigue, lethargy, yellowish_skin, dark_urine, abdominal_pain, yellow_urine, yellowing_of_eyes, malaise, receiving_blood_transfusion, receiving_unsterile_injections,null,null,null,null,null,null
146
+ Hepatitis B,itching, fatigue, lethargy, yellowish_skin, dark_urine, loss_of_appetite, yellow_urine, yellowing_of_eyes, malaise, receiving_blood_transfusion, receiving_unsterile_injections,null,null,null,null,null,null
147
+ Hepatitis B,itching, fatigue, lethargy, yellowish_skin, dark_urine, loss_of_appetite, abdominal_pain, yellowing_of_eyes, malaise, receiving_blood_transfusion, receiving_unsterile_injections,null,null,null,null,null,null
148
+ Hepatitis B,itching, fatigue, lethargy, yellowish_skin, dark_urine, loss_of_appetite, abdominal_pain, yellow_urine, yellowing_of_eyes, malaise, receiving_blood_transfusion, receiving_unsterile_injections,null,null,null,null,null
149
+ Hepatitis B,itching, lethargy, yellowish_skin, dark_urine, loss_of_appetite, abdominal_pain, yellow_urine, yellowing_of_eyes, malaise, receiving_blood_transfusion, receiving_unsterile_injections,null,null,null,null,null,null
150
+ Hepatitis B, fatigue, lethargy, yellowish_skin, dark_urine, loss_of_appetite, abdominal_pain, yellow_urine, yellowing_of_eyes, malaise, receiving_blood_transfusion, receiving_unsterile_injections,null,null,null,null,null,null
151
+ Hepatitis C, fatigue, yellowish_skin, loss_of_appetite, yellowing_of_eyes, family_history,null,null,null,null,null,null,null,null,null,null,null,null
152
+ Hepatitis C, fatigue, yellowish_skin, nausea, loss_of_appetite, family_history,null,null,null,null,null,null,null,null,null,null,null,null
153
+ Hepatitis C, fatigue, yellowish_skin, nausea, loss_of_appetite, yellowing_of_eyes, family_history,null,null,null,null,null,null,null,null,null,null,null
154
+ Hepatitis C, yellowish_skin, nausea, loss_of_appetite, yellowing_of_eyes, family_history,null,null,null,null,null,null,null,null,null,null,null,null
155
+ Hepatitis C, fatigue, nausea, loss_of_appetite, yellowing_of_eyes, family_history,null,null,null,null,null,null,null,null,null,null,null,null
156
+ Hepatitis C, fatigue, yellowish_skin, nausea, yellowing_of_eyes, family_history,null,null,null,null,null,null,null,null,null,null,null,null
157
+ Hepatitis C, fatigue, yellowish_skin, nausea, loss_of_appetite, yellowing_of_eyes,null,null,null,null,null,null,null,null,null,null,null,null
158
+ Hepatitis D, joint_pain, vomiting, fatigue, yellowish_skin, dark_urine, nausea, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null
159
+ Hepatitis D, joint_pain, vomiting, fatigue, yellowish_skin, dark_urine, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null
160
+ Hepatitis D, joint_pain, vomiting, fatigue, yellowish_skin, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null
161
+ Hepatitis D, joint_pain, vomiting, fatigue, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null
162
+ Hepatitis D, joint_pain, vomiting, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null
163
+ Hepatitis D, joint_pain, fatigue, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null
164
+ Hepatitis D, vomiting, fatigue, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null,null
165
+ Hepatitis D, joint_pain, vomiting, fatigue, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes,null,null,null,null,null,null,null,null
166
+ Hepatitis D, joint_pain, vomiting, fatigue, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain,null,null,null,null,null,null,null,null,null
167
+ Hepatitis D, joint_pain, vomiting, fatigue, yellowish_skin, dark_urine, nausea, loss_of_appetite, yellowing_of_eyes,null,null,null,null,null,null,null,null,null
168
+ Hepatitis E, joint_pain, vomiting, fatigue, high_fever, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes, coma, stomach_bleeding,null,null,null,null,null
169
+ Hepatitis E, joint_pain, vomiting, fatigue, high_fever, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes, acute_liver_failure, coma, stomach_bleeding,null,null,null,null
170
+ Hepatitis E, joint_pain, fatigue, high_fever, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes, acute_liver_failure, coma, stomach_bleeding,null,null,null,null,null
171
+ Hepatitis E, joint_pain, vomiting, high_fever, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes, acute_liver_failure, coma, stomach_bleeding,null,null,null,null,null
172
+ Hepatitis E, joint_pain, vomiting, fatigue, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes, acute_liver_failure, coma, stomach_bleeding,null,null,null,null,null
173
+ Hepatitis E, joint_pain, vomiting, fatigue, high_fever, yellowish_skin, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes, acute_liver_failure, coma, stomach_bleeding,null,null,null,null,null
174
+ Hepatitis E, joint_pain, vomiting, fatigue, high_fever, yellowish_skin, dark_urine, loss_of_appetite, abdominal_pain, yellowing_of_eyes, acute_liver_failure, coma, stomach_bleeding,null,null,null,null,null
175
+ Hepatitis E, joint_pain, vomiting, fatigue, high_fever, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes, acute_liver_failure, coma, stomach_bleeding,null,null,null,null,null
176
+ Hepatitis E, vomiting, fatigue, high_fever, yellowish_skin, dark_urine, nausea, loss_of_appetite, abdominal_pain, yellowing_of_eyes, acute_liver_failure, coma, stomach_bleeding,null,null,null,null,null
177
+ Hypertension , chest_pain, dizziness, loss_of_balance, lack_of_concentration,null,null,null,null,null,null,null,null,null,null,null,null,null
178
+ Hypertension , headache, chest_pain, dizziness, loss_of_balance, lack_of_concentration,null,null,null,null,null,null,null,null,null,null,null,null
179
+ Hypertension , headache, chest_pain, loss_of_balance, lack_of_concentration,null,null,null,null,null,null,null,null,null,null,null,null,null
180
+ Hypertension , headache, chest_pain, dizziness, lack_of_concentration,null,null,null,null,null,null,null,null,null,null,null,null,null
181
+ Hypertension , headache, chest_pain, dizziness, loss_of_balance,null,null,null,null,null,null,null,null,null,null,null,null,null
182
+ Hypertension , headache, dizziness, loss_of_balance, lack_of_concentration,null,null,null,null,null,null,null,null,null,null,null,null,null
183
+ Hyperthyroidism, fatigue, weight_loss, restlessness, sweating, diarrhoea, fast_heart_rate, excessive_hunger, muscle_weakness, irritability, abnormal_menstruation,null,null,null,null,null,null,null
184
+ Hyperthyroidism, fatigue, mood_swings, restlessness, sweating, diarrhoea, fast_heart_rate, excessive_hunger, muscle_weakness, irritability, abnormal_menstruation,null,null,null,null,null,null,null
185
+ Hyperthyroidism, fatigue, mood_swings, weight_loss, sweating, diarrhoea, fast_heart_rate, excessive_hunger, muscle_weakness, irritability, abnormal_menstruation,null,null,null,null,null,null,null
186
+ Hyperthyroidism, fatigue, mood_swings, weight_loss, restlessness, diarrhoea, fast_heart_rate, excessive_hunger, muscle_weakness, irritability, abnormal_menstruation,null,null,null,null,null,null,null
187
+ Hyperthyroidism, fatigue, mood_swings, weight_loss, restlessness, sweating, fast_heart_rate, excessive_hunger, muscle_weakness, irritability, abnormal_menstruation,null,null,null,null,null,null,null
188
+ Hyperthyroidism, fatigue, mood_swings, weight_loss, restlessness, sweating, diarrhoea, excessive_hunger, muscle_weakness, irritability, abnormal_menstruation,null,null,null,null,null,null,null
189
+ Hyperthyroidism, fatigue, mood_swings, weight_loss, restlessness, sweating, diarrhoea, fast_heart_rate, muscle_weakness, irritability, abnormal_menstruation,null,null,null,null,null,null,null
190
+ Hyperthyroidism, fatigue, mood_swings, weight_loss, restlessness, sweating, diarrhoea, fast_heart_rate, excessive_hunger, muscle_weakness, irritability, abnormal_menstruation,null,null,null,null,null,null
191
+ Hyperthyroidism, mood_swings, weight_loss, restlessness, sweating, diarrhoea, fast_heart_rate, excessive_hunger, muscle_weakness, irritability, abnormal_menstruation,null,null,null,null,null,null,null
192
+ Hypoglycemia, vomiting, fatigue, anxiety, sweating, headache, blurred_and_distorted_vision, excessive_hunger, drying_and_tingling_lips, slurred_speech, irritability, palpitations,null,null,null,null,null,null
193
+ Hypoglycemia, vomiting, fatigue, sweating, headache, nausea, blurred_and_distorted_vision, excessive_hunger, drying_and_tingling_lips, slurred_speech, irritability, palpitations,null,null,null,null,null,null
194
+ Hypoglycemia, vomiting, anxiety, sweating, headache, nausea, blurred_and_distorted_vision, excessive_hunger, drying_and_tingling_lips, slurred_speech, irritability, palpitations,null,null,null,null,null,null
195
+ Hypoglycemia, fatigue, anxiety, sweating, headache, nausea, blurred_and_distorted_vision, excessive_hunger, drying_and_tingling_lips, slurred_speech, irritability, palpitations,null,null,null,null,null,null
196
+ Hypoglycemia, vomiting, fatigue, anxiety, sweating, headache, nausea, blurred_and_distorted_vision, excessive_hunger, drying_and_tingling_lips, slurred_speech, irritability, palpitations,null,null,null,null,null
197
+ Hypoglycemia, vomiting, fatigue, anxiety, sweating, headache, nausea, blurred_and_distorted_vision, excessive_hunger, slurred_speech, irritability, palpitations,null,null,null,null,null,null
198
+ Hypoglycemia, vomiting, fatigue, anxiety, sweating, headache, nausea, excessive_hunger, drying_and_tingling_lips, slurred_speech, irritability, palpitations,null,null,null,null,null,null
199
+ Hypoglycemia, vomiting, fatigue, anxiety, sweating, nausea, blurred_and_distorted_vision, excessive_hunger, drying_and_tingling_lips, slurred_speech, irritability, palpitations,null,null,null,null,null,null
200
+ Hypoglycemia, vomiting, fatigue, anxiety, headache, nausea, blurred_and_distorted_vision, excessive_hunger, drying_and_tingling_lips, slurred_speech, irritability, palpitations,null,null,null,null,null,null
201
+ Hypothyroidism, fatigue, cold_hands_and_feet, mood_swings, lethargy, dizziness, puffy_face_and_eyes, enlarged_thyroid, brittle_nails, swollen_extremities, depression, irritability, abnormal_menstruation,null,null,null,null,null
202
+ Hypothyroidism, fatigue, weight_gain, mood_swings, lethargy, dizziness, puffy_face_and_eyes, enlarged_thyroid, brittle_nails, swollen_extremities, depression, irritability, abnormal_menstruation,null,null,null,null,null
203
+ Hypothyroidism, fatigue, weight_gain, cold_hands_and_feet, mood_swings, lethargy, puffy_face_and_eyes, enlarged_thyroid, brittle_nails, swollen_extremities, depression, irritability, abnormal_menstruation,null,null,null,null,null
204
+ Hypothyroidism, fatigue, weight_gain, cold_hands_and_feet, lethargy, dizziness, puffy_face_and_eyes, enlarged_thyroid, brittle_nails, swollen_extremities, depression, irritability, abnormal_menstruation,null,null,null,null,null
205
+ Hypothyroidism, fatigue, weight_gain, cold_hands_and_feet, mood_swings, dizziness, puffy_face_and_eyes, enlarged_thyroid, brittle_nails, swollen_extremities, depression, irritability, abnormal_menstruation,null,null,null,null,null
206
+ Hypothyroidism, fatigue, weight_gain, cold_hands_and_feet, mood_swings, lethargy, dizziness, puffy_face_and_eyes, enlarged_thyroid, brittle_nails, swollen_extremities, depression, irritability, abnormal_menstruation,null,null,null,null
207
+ Hypothyroidism, weight_gain, cold_hands_and_feet, mood_swings, lethargy, dizziness, puffy_face_and_eyes, enlarged_thyroid, brittle_nails, swollen_extremities, depression, irritability, abnormal_menstruation,null,null,null,null,null
208
+ Hypothyroidism, fatigue, weight_gain, cold_hands_and_feet, mood_swings, lethargy, dizziness, enlarged_thyroid, brittle_nails, swollen_extremities, depression, irritability, abnormal_menstruation,null,null,null,null,null
209
+ Impetigo, skin_rash, high_fever, blister, red_sore_around_nose, yellow_crust_ooze,null,null,null,null,null,null,null,null,null,null,null,null
210
+ Impetigo, high_fever, blister, red_sore_around_nose, yellow_crust_ooze,null,null,null,null,null,null,null,null,null,null,null,null,null
211
+ Impetigo, skin_rash, blister, red_sore_around_nose, yellow_crust_ooze,null,null,null,null,null,null,null,null,null,null,null,null,null
212
+ Impetigo, skin_rash, high_fever, red_sore_around_nose, yellow_crust_ooze,null,null,null,null,null,null,null,null,null,null,null,null,null
213
+ Impetigo, skin_rash, high_fever, blister, yellow_crust_ooze,null,null,null,null,null,null,null,null,null,null,null,null,null
214
+ Impetigo, skin_rash, high_fever, blister, red_sore_around_nose,null,null,null,null,null,null,null,null,null,null,null,null,null
215
+ Jaundice, vomiting, fatigue, weight_loss, high_fever, yellowish_skin, dark_urine, abdominal_pain,null,null,null,null,null,null,null,null,null,null
216
+ Jaundice,itching, vomiting, weight_loss, high_fever, yellowish_skin, dark_urine, abdominal_pain,null,null,null,null,null,null,null,null,null,null
217
+ Jaundice,itching, vomiting, fatigue, high_fever, yellowish_skin, dark_urine, abdominal_pain,null,null,null,null,null,null,null,null,null,null
218
+ Jaundice,itching, vomiting, fatigue, weight_loss, yellowish_skin, dark_urine, abdominal_pain,null,null,null,null,null,null,null,null,null,null
219
+ Jaundice,itching, vomiting, fatigue, weight_loss, high_fever, dark_urine, abdominal_pain,null,null,null,null,null,null,null,null,null,null
220
+ Jaundice,itching, vomiting, fatigue, weight_loss, high_fever, yellowish_skin, dark_urine, abdominal_pain,null,null,null,null,null,null,null,null,null
221
+ Jaundice,itching, vomiting, fatigue, weight_loss, high_fever, yellowish_skin, abdominal_pain,null,null,null,null,null,null,null,null,null,null
222
+ Jaundice,itching, vomiting, fatigue, weight_loss, high_fever, yellowish_skin, dark_urine,null,null,null,null,null,null,null,null,null,null
223
+ Jaundice,itching, fatigue, weight_loss, high_fever, yellowish_skin, dark_urine, abdominal_pain,null,null,null,null,null,null,null,null,null,null
224
+ Malaria, chills, vomiting, high_fever, sweating, headache, nausea, muscle_pain,null,null,null,null,null,null,null,null,null,null
225
+ Malaria, chills, vomiting, high_fever, sweating, headache, nausea, diarrhoea, muscle_pain,null,null,null,null,null,null,null,null,null
226
+ Malaria, vomiting, high_fever, sweating, headache, nausea, diarrhoea, muscle_pain,null,null,null,null,null,null,null,null,null,null
227
+ Malaria, chills, vomiting, high_fever, headache, nausea, diarrhoea, muscle_pain,null,null,null,null,null,null,null,null,null,null
228
+ Malaria, chills, vomiting, high_fever, sweating, nausea, diarrhoea, muscle_pain,null,null,null,null,null,null,null,null,null,null
229
+ Malaria, chills, vomiting, high_fever, sweating, headache, diarrhoea, muscle_pain,null,null,null,null,null,null,null,null,null,null
230
+ Malaria, chills, high_fever, sweating, headache, nausea, diarrhoea, muscle_pain,null,null,null,null,null,null,null,null,null,null
231
+ Malaria, chills, vomiting, sweating, headache, nausea, diarrhoea, muscle_pain,null,null,null,null,null,null,null,null,null,null
232
+ Migraine, acidity, indigestion, headache, excessive_hunger, stiff_neck, depression, irritability, visual_disturbances,null,null,null,null,null,null,null,null,null
233
+ Migraine, acidity, indigestion, blurred_and_distorted_vision, excessive_hunger, stiff_neck, depression, irritability, visual_disturbances,null,null,null,null,null,null,null,null,null
234
+ Migraine, acidity, headache, blurred_and_distorted_vision, excessive_hunger, stiff_neck, depression, irritability, visual_disturbances,null,null,null,null,null,null,null,null,null
235
+ Migraine, indigestion, headache, blurred_and_distorted_vision, excessive_hunger, stiff_neck, depression, irritability, visual_disturbances,null,null,null,null,null,null,null,null,null
236
+ Migraine, acidity, indigestion, headache, blurred_and_distorted_vision, excessive_hunger, stiff_neck, depression, irritability, visual_disturbances,null,null,null,null,null,null,null,null
237
+ Migraine, acidity, indigestion, headache, blurred_and_distorted_vision, excessive_hunger, depression, irritability, visual_disturbances,null,null,null,null,null,null,null,null,null
238
+ Migraine, acidity, indigestion, headache, blurred_and_distorted_vision, excessive_hunger, stiff_neck, depression, irritability,null,null,null,null,null,null,null,null,null
239
+ Migraine, acidity, indigestion, headache, blurred_and_distorted_vision, excessive_hunger, stiff_neck, depression, visual_disturbances,null,null,null,null,null,null,null,null,null
240
+ Migraine, acidity, indigestion, headache, blurred_and_distorted_vision, stiff_neck, depression, irritability, visual_disturbances,null,null,null,null,null,null,null,null,null
241
+ Migraine, acidity, indigestion, headache, blurred_and_distorted_vision, excessive_hunger, stiff_neck, irritability, visual_disturbances,null,null,null,null,null,null,null,null,null
242
+ Osteoarthritis, joint_pain, neck_pain, knee_pain, hip_joint_pain, swelling_joints, painful_walking,null,null,null,null,null,null,null,null,null,null,null
243
+ Osteoarthritis, neck_pain, knee_pain, hip_joint_pain, swelling_joints, painful_walking,null,null,null,null,null,null,null,null,null,null,null,null
244
+ Osteoarthritis, joint_pain, knee_pain, hip_joint_pain, swelling_joints, painful_walking,null,null,null,null,null,null,null,null,null,null,null,null
245
+ Osteoarthritis, joint_pain, neck_pain, hip_joint_pain, swelling_joints, painful_walking,null,null,null,null,null,null,null,null,null,null,null,null
246
+ Osteoarthritis, joint_pain, neck_pain, knee_pain, swelling_joints, painful_walking,null,null,null,null,null,null,null,null,null,null,null,null
247
+ Osteoarthritis, joint_pain, neck_pain, knee_pain, hip_joint_pain, painful_walking,null,null,null,null,null,null,null,null,null,null,null,null
248
+ Osteoarthritis, joint_pain, neck_pain, knee_pain, hip_joint_pain, swelling_joints,null,null,null,null,null,null,null,null,null,null,null,null
249
+ Paralysis (brain hemorrhage), vomiting, weakness_of_one_body_side, altered_sensorium,null,null,null,null,null,null,null,null,null,null,null,null,null,null
250
+ Paralysis (brain hemorrhage), vomiting, headache, altered_sensorium,null,null,null,null,null,null,null,null,null,null,null,null,null,null
251
+ Paralysis (brain hemorrhage), vomiting, headache, weakness_of_one_body_side,null,null,null,null,null,null,null,null,null,null,null,null,null,null
252
+ Paralysis (brain hemorrhage), headache, weakness_of_one_body_side, altered_sensorium,null,null,null,null,null,null,null,null,null,null,null,null,null,null
253
+ Paralysis (brain hemorrhage), vomiting, headache, weakness_of_one_body_side, altered_sensorium,null,null,null,null,null,null,null,null,null,null,null,null,null
254
+ Paroxysmal Positional Vertigo, vomiting, headache, nausea, spinning_movements, loss_of_balance, unsteadiness,null,null,null,null,null,null,null,null,null,null,null
255
+ Paroxysmal Positional Vertigo, vomiting, headache, nausea, spinning_movements, loss_of_balance,null,null,null,null,null,null,null,null,null,null,null,null
256
+ Paroxysmal Positional Vertigo, vomiting, headache, nausea, spinning_movements, unsteadiness,null,null,null,null,null,null,null,null,null,null,null,null
257
+ Paroxysmal Positional Vertigo, headache, nausea, spinning_movements, loss_of_balance, unsteadiness,null,null,null,null,null,null,null,null,null,null,null,null
258
+ Paroxysmal Positional Vertigo, vomiting, nausea, spinning_movements, loss_of_balance, unsteadiness,null,null,null,null,null,null,null,null,null,null,null,null
259
+ Paroxysmal Positional Vertigo, vomiting, headache, spinning_movements, loss_of_balance, unsteadiness,null,null,null,null,null,null,null,null,null,null,null,null
260
+ Paroxysmal Positional Vertigo, vomiting, headache, nausea, loss_of_balance, unsteadiness,null,null,null,null,null,null,null,null,null,null,null,null
261
+ Peptic ulcer disease, vomiting, indigestion, loss_of_appetite, abdominal_pain, passage_of_gases, internal_itching,null,null,null,null,null,null,null,null,null,null,null
262
+ Peptic ulcer disease, vomiting, indigestion, loss_of_appetite, abdominal_pain, passage_of_gases,null,null,null,null,null,null,null,null,null,null,null,null
263
+ Peptic ulcer disease, vomiting, indigestion, loss_of_appetite, abdominal_pain, internal_itching,null,null,null,null,null,null,null,null,null,null,null,null
264
+ Peptic ulcer disease, vomiting, indigestion, loss_of_appetite, passage_of_gases, internal_itching,null,null,null,null,null,null,null,null,null,null,null,null
265
+ Peptic ulcer disease, indigestion, loss_of_appetite, abdominal_pain, passage_of_gases, internal_itching,null,null,null,null,null,null,null,null,null,null,null,null
266
+ Peptic ulcer disease, vomiting, indigestion, abdominal_pain, passage_of_gases, internal_itching,null,null,null,null,null,null,null,null,null,null,null,null
267
+ Peptic ulcer disease, vomiting, loss_of_appetite, abdominal_pain, passage_of_gases, internal_itching,null,null,null,null,null,null,null,null,null,null,null,null
268
+ Pneumonia, chills, fatigue, cough, high_fever, breathlessness, malaise, phlegm, chest_pain, fast_heart_rate, rusty_sputum,null,null,null,null,null,null,null
269
+ Pneumonia, chills, fatigue, cough, high_fever, sweating, malaise, phlegm, chest_pain, fast_heart_rate, rusty_sputum,null,null,null,null,null,null,null
270
+ Pneumonia, chills, fatigue, cough, breathlessness, sweating, malaise, phlegm, chest_pain, fast_heart_rate, rusty_sputum,null,null,null,null,null,null,null
271
+ Pneumonia, chills, fatigue, cough, high_fever, breathlessness, sweating, phlegm, chest_pain, fast_heart_rate, rusty_sputum,null,null,null,null,null,null,null
272
+ Pneumonia, chills, fatigue, high_fever, breathlessness, sweating, malaise, phlegm, chest_pain, fast_heart_rate, rusty_sputum,null,null,null,null,null,null,null
273
+ Pneumonia, fatigue, cough, high_fever, breathlessness, sweating, malaise, phlegm, chest_pain, fast_heart_rate, rusty_sputum,null,null,null,null,null,null,null
274
+ Pneumonia, chills, fatigue, cough, high_fever, breathlessness, sweating, malaise, phlegm, chest_pain, fast_heart_rate, rusty_sputum,null,null,null,null,null,null
275
+ Pneumonia, chills, fatigue, cough, high_fever, breathlessness, sweating, malaise, chest_pain, fast_heart_rate, rusty_sputum,null,null,null,null,null,null,null
276
+ Pneumonia, chills, cough, high_fever, breathlessness, sweating, malaise, phlegm, chest_pain, fast_heart_rate, rusty_sputum,null,null,null,null,null,null,null
277
+ Psoriasis, skin_rash, joint_pain, skin_peeling, small_dents_in_nails, inflammatory_nails,null,null,null,null,null,null,null,null,null,null,null,null
278
+ Psoriasis, skin_rash, skin_peeling, silver_like_dusting, small_dents_in_nails, inflammatory_nails,null,null,null,null,null,null,null,null,null,null,null,null
279
+ Psoriasis, joint_pain, skin_peeling, silver_like_dusting, small_dents_in_nails, inflammatory_nails,null,null,null,null,null,null,null,null,null,null,null,null
280
+ Psoriasis, skin_rash, joint_pain, skin_peeling, silver_like_dusting, small_dents_in_nails, inflammatory_nails,null,null,null,null,null,null,null,null,null,null,null
281
+ Psoriasis, skin_rash, joint_pain, skin_peeling, silver_like_dusting, inflammatory_nails,null,null,null,null,null,null,null,null,null,null,null,null
282
+ Psoriasis, skin_rash, joint_pain, skin_peeling, silver_like_dusting, small_dents_in_nails,null,null,null,null,null,null,null,null,null,null,null,null
283
+ Psoriasis, skin_rash, joint_pain, silver_like_dusting, small_dents_in_nails, inflammatory_nails,null,null,null,null,null,null,null,null,null,null,null,null
284
+ Tuberculosis, chills, vomiting, fatigue, weight_loss, cough, high_fever, breathlessness, sweating, loss_of_appetite, mild_fever, yellowing_of_eyes, swelled_lymph_nodes, malaise, phlegm, chest_pain, blood_in_sputum,null
285
+ Tuberculosis, chills, vomiting, fatigue, weight_loss, high_fever, breathlessness, sweating, loss_of_appetite, mild_fever, yellowing_of_eyes, swelled_lymph_nodes, malaise, phlegm, chest_pain, blood_in_sputum,null,null
286
+ Tuberculosis, vomiting, fatigue, weight_loss, cough, high_fever, breathlessness, sweating, loss_of_appetite, mild_fever, yellowing_of_eyes, swelled_lymph_nodes, malaise, phlegm, chest_pain, blood_in_sputum,null,null
287
+ Tuberculosis, chills, fatigue, weight_loss, cough, high_fever, breathlessness, sweating, loss_of_appetite, mild_fever, yellowing_of_eyes, swelled_lymph_nodes, malaise, phlegm, chest_pain, blood_in_sputum,null,null
288
+ Tuberculosis, chills, vomiting, weight_loss, cough, high_fever, breathlessness, sweating, loss_of_appetite, mild_fever, yellowing_of_eyes, swelled_lymph_nodes, malaise, phlegm, chest_pain, blood_in_sputum,null,null
289
+ Tuberculosis, chills, vomiting, fatigue, cough, high_fever, breathlessness, sweating, loss_of_appetite, mild_fever, yellowing_of_eyes, swelled_lymph_nodes, malaise, phlegm, chest_pain, blood_in_sputum,null,null
290
+ Tuberculosis, chills, vomiting, fatigue, weight_loss, cough, high_fever, breathlessness, loss_of_appetite, mild_fever, yellowing_of_eyes, swelled_lymph_nodes, malaise, phlegm, chest_pain, blood_in_sputum,null,null
291
+ Tuberculosis, chills, vomiting, fatigue, weight_loss, cough, high_fever, sweating, loss_of_appetite, mild_fever, yellowing_of_eyes, swelled_lymph_nodes, malaise, phlegm, chest_pain, blood_in_sputum,null,null
292
+ Tuberculosis, chills, vomiting, fatigue, weight_loss, cough, breathlessness, sweating, loss_of_appetite, mild_fever, yellowing_of_eyes, swelled_lymph_nodes, malaise, phlegm, chest_pain, blood_in_sputum,null,null
293
+ Typhoid, chills, vomiting, fatigue, high_fever, headache, nausea, constipation, abdominal_pain, diarrhoea, toxic_look_(typhus),null,null,null,null,null,null,null
294
+ Typhoid, chills, vomiting, fatigue, high_fever, headache, nausea, constipation, abdominal_pain, diarrhoea, belly_pain,null,null,null,null,null,null,null
295
+ Typhoid, chills, vomiting, fatigue, high_fever, headache, nausea, constipation, abdominal_pain, toxic_look_(typhus), belly_pain,null,null,null,null,null,null,null
296
+ Typhoid, chills, fatigue, high_fever, headache, nausea, constipation, abdominal_pain, diarrhoea, toxic_look_(typhus), belly_pain,null,null,null,null,null,null,null
297
+ Typhoid, chills, vomiting, fatigue, high_fever, headache, nausea, abdominal_pain, diarrhoea, toxic_look_(typhus), belly_pain,null,null,null,null,null,null,null
298
+ Typhoid, chills, vomiting, fatigue, high_fever, headache, constipation, abdominal_pain, diarrhoea, toxic_look_(typhus), belly_pain,null,null,null,null,null,null,null
299
+ Typhoid, chills, vomiting, fatigue, high_fever, nausea, constipation, abdominal_pain, diarrhoea, toxic_look_(typhus), belly_pain,null,null,null,null,null,null,null
300
+ Typhoid, chills, vomiting, fatigue, high_fever, headache, nausea, constipation, abdominal_pain, diarrhoea, toxic_look_(typhus), belly_pain,null,null,null,null,null,null
301
+ Typhoid, chills, vomiting, fatigue, high_fever, headache, nausea, constipation, diarrhoea, toxic_look_(typhus), belly_pain,null,null,null,null,null,null,null
302
+ Urinary tract infection, burning_micturition, bladder_discomfort, foul_smell_of urine, continuous_feel_of_urine,null,null,null,null,null,null,null,null,null,null,null,null,null
303
+ Urinary tract infection, bladder_discomfort, foul_smell_of urine, continuous_feel_of_urine,null,null,null,null,null,null,null,null,null,null,null,null,null,null
304
+ Urinary tract infection, burning_micturition, foul_smell_of urine, continuous_feel_of_urine,null,null,null,null,null,null,null,null,null,null,null,null,null,null
305
+ Urinary tract infection, burning_micturition, bladder_discomfort, continuous_feel_of_urine,null,null,null,null,null,null,null,null,null,null,null,null,null,null
306
+ Urinary tract infection, burning_micturition, bladder_discomfort, foul_smell_of urine,null,null,null,null,null,null,null,null,null,null,null,null,null,null
307
+ Varicose veins, fatigue, cramps, bruising, obesity, swollen_blood_vessels, prominent_veins_on_calf,null,null,null,null,null,null,null,null,null,null,null
308
+ Varicose veins, fatigue, cramps, obesity, swollen_legs, swollen_blood_vessels, prominent_veins_on_calf,null,null,null,null,null,null,null,null,null,null,null
309
+ Varicose veins, fatigue, bruising, obesity, swollen_legs, swollen_blood_vessels, prominent_veins_on_calf,null,null,null,null,null,null,null,null,null,null,null
310
+ Varicose veins, cramps, bruising, obesity, swollen_legs, swollen_blood_vessels, prominent_veins_on_calf,null,null,null,null,null,null,null,null,null,null,null
311
+ Varicose veins, fatigue, cramps, bruising, obesity, swollen_legs, swollen_blood_vessels, prominent_veins_on_calf,null,null,null,null,null,null,null,null,null,null
312
+ Varicose veins, fatigue, cramps, bruising, obesity, swollen_legs, prominent_veins_on_calf,null,null,null,null,null,null,null,null,null,null,null
313
+ Varicose veins, fatigue, cramps, bruising, swollen_legs, swollen_blood_vessels, prominent_veins_on_calf,null,null,null,null,null,null,null,null,null,null,null
314
+ Varicose veins, fatigue, cramps, bruising, obesity, swollen_legs, swollen_blood_vessels,null,null,null,null,null,null,null,null,null,null,null
files/disease_description.csv ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Disease,Symptom_Description
2
+ AIDS,"Acquired immunodeficiency syndrome (AIDS) is a chronic, potentially life-threatening condition caused by the human immunodeficiency virus (HIV). By damaging your immune system, HIV interferes with your body's ability to fight infection and disease."
3
+ Acne,"Acne vulgaris is the formation of comedones, papules, pustules, nodules, and/or cysts as a result of obstruction and inflammation of pilosebaceous units (hair follicles and their accompanying sebaceous gland). Acne develops on the face and upper trunk. It most often affects adolescents."
4
+ Alcoholic hepatitis,"Alcoholic hepatitis is a diseased, inflammatory condition of the liver caused by heavy alcohol consumption over an extended period. It's also aggravated by binge drinking and ongoing alcohol use. If you develop this condition, you must stop drinking alcohol"
5
+ Allergy,"An allergy is an immune system response to a foreign substance that's not typically harmful to your body.They can include certain foods, pollen, or pet dander. Your immune system's job is to keep you healthy by fighting harmful pathogens."
6
+ Arthritis,"Arthritis is the swelling and tenderness of one or more of your joints. The main symptoms of arthritis are joint pain and stiffness, which typically worsen with age. The most common types of arthritis are osteoarthritis and rheumatoid arthritis."
7
+ Bronchial Asthma,"Bronchial asthma is a medical condition which causes the airway path of the lungs to swell and narrow. Due to this swelling, the air path produces excess mucus making it hard to breathe, which results in coughing, short breath, and wheezing. The disease is chronic and interferes with daily working."
8
+ Cervical spondylosis,"Cervical spondylosis is a general term for age-related wear and tear affecting the spinal disks in your neck. As the disks dehydrate and shrink, signs of osteoarthritis develop, including bony projections along the edges of bones (bone spurs)."
9
+ Chicken pox,"Chickenpox is a highly contagious disease caused by the varicella-zoster virus (VZV). It can cause an itchy, blister-like rash. The rash first appears on the chest, back, and face, and then spreads over the entire body, causing between 250 and 500 itchy blisters."
10
+ Chronic cholestasis,"Chronic cholestatic diseases, whether occurring in infancy, childhood or adulthood, are characterized by defective bile acid transport from the liver to the intestine, which is caused by primary damage to the biliary epithelium in most cases"
11
+ Common Cold,"The common cold is a viral infection of your nose and throat (upper respiratory tract). It's usually harmless, although it might not feel that way. Many types of viruses can cause a common cold."
12
+ Covid,"COVID-19 (Corona Virus) affects different people in different ways. It affects the lungs. Most infected people will develop mild to moderate illness and recover without hospitalization."
13
+ Dengue,"an acute infectious disease caused by a flavivirus (species Dengue virus of the genus Flavivirus), transmitted by aedes mosquitoes, and characterized by headache, severe joint pain, and a rash. β€” called also breakbone fever, dengue fever."
14
+ Diabetes,"Diabetes is a disease that occurs when your blood glucose, also called blood sugar, is too high. Blood glucose is your main source of energy and comes from the food you eat. Insulin, a hormone made by the pancreas, helps glucose from food get into your cells to be used for energy."
15
+ Dimorphic hemorrhoids(piles),"Hemorrhoids, also spelled haemorrhoids, are vascular structures in the anal canal. In their ... Other names, Haemorrhoids, piles, hemorrhoidal disease ."
16
+ Drug Reaction,An adverse drug reaction (ADR) is an injury caused by taking medication. ADRs may occur following a single dose or prolonged administration of a drug or result from the combination of two or more drugs.
17
+ Fungal infection,"In humans, fungal infections occur when an invading fungus takes over an area of the body and is too much for the immune system to handle. Fungi can live in the air, soil, water, and plants. Some fungi live naturally in the human body. Like many microbes, there are helpful fungi and harmful fungi."
18
+ GERD,"Gastroesophageal reflux disease, or GERD, is a digestive disorder that affects the lower oesophagal sphincter (LES), the ring of muscle between the oesophagus and stomach. Many people, including pregnant women, suffer from heartburn or acid indigestion caused by GERD."
19
+ Gastroenteritis,"Gastroenteritis is an inflammation of the digestive tract, particularly the stomach, and large and small intestines. Viral and bacterial gastroenteritis are intestinal infections associated with symptoms of diarrhea , abdominal cramps, nausea , and vomiting ."
20
+ Heart attack,"The death of heart muscle due to the loss of blood supply. The loss of blood supply is usually caused by a complete blockage of a coronary artery, one of the arteries that supply blood to the heart muscle."
21
+ Hepatitis A,"Hepatitis A is a highly contagious liver infection caused by the hepatitis A virus. The virus is one of several types of hepatitis viruses that cause inflammation and affect your liver's ability to function."
22
+ Hepatitis B,"Hepatitis B is an infection of your liver. It can cause scarring of the organ, liver failure, and cancer. It can be fatal if it isn't treated. It's spread when people come in contact with the blood, open sores, or body fluids of someone who has the hepatitis B virus."
23
+ Hepatitis C,"Inflammation of the liver due to the hepatitis C virus (HCV), which is usually spread via blood transfusion (rare), hemodialysis, and needle sticks. The damage hepatitis C does to the liver can lead to cirrhosis and its complications as well as cancer."
24
+ Hepatitis D,"Hepatitis D, also known as the hepatitis delta virus, is an infection that causes the liver to become inflamed. This swelling can impair liver function and cause long-term liver problems, including liver scarring and cancer. The condition is caused by the hepatitis D virus (HDV)."
25
+ Hepatitis E,"A rare form of liver inflammation caused by infection with the hepatitis E virus (HEV). It is transmitted via food or drinks handled by an infected person or through infected water supplies in areas where the faecal matter may get into the water. Hepatitis E does not cause chronic liver disease."
26
+ Hypertension,"Hypertension (HTN or HT), also known as high blood pressure (HBP), is a long-term medical condition in which the blood pressure in the arteries is persistently elevated. High blood pressure typically does not cause symptoms."
27
+ Hyperthyroidism,"Hyperthyroidism (overactive thyroid) occurs when your thyroid gland produces too much of the hormone thyroxine. Hyperthyroidism can accelerate your body's metabolism, causing unintentional weight loss and a rapid or irregular heartbeat."
28
+ Hypoglycemia,"Hypoglycemia is a condition in which your blood sugar (glucose) level is lower than normal. Glucose is your body's main energy source. Hypoglycemia is often related to diabetes treatment. But other drugs and a variety of conditions β€” many rare β€” can cause low blood sugar in people who don't have diabetes."
29
+ Hypothyroidism,"Hypothyroidism, also called underactive thyroid or low thyroid, is a disorder of the endocrine system in which the thyroid gland does not produce enough thyroid hormone."
30
+ Impetigo,"Impetigo (im-puh-TIE-go) is a common and highly contagious skin infection that mainly affects infants and children. Impetigo usually appears as red sores on the face, especially around a child's nose and mouth, and on hands and feet. The sores burst and develop honey-coloured crusts."
31
+ Jaundice,"Yellow staining of the skin and sclerae (the whites of the eyes) by abnormally high blood levels of the bile pigment bilirubin. The yellowing extends to other tissues and body fluids. Jaundice was once called the "Morbus regius" (the regal disease) in the belief that only the touch of a king could cure it"
32
+ Malaria,"An infectious disease caused by protozoan parasites from the Plasmodium family that can be transmitted by the bite of the Anopheles mosquito or by a contaminated needle or transfusion. Falciparum malaria is the most deadly type."
33
+ Migraine,"A migraine can cause severe throbbing pain or a pulsing sensation, usually on one side of the head. It's often accompanied by nausea, vomiting, and extreme sensitivity to light and sound. Migraine attacks can last for hours to days, and the pain can be so severe that it interferes with your daily activities."
34
+ Osteoarthritis,"Osteoarthritis is the most common form of arthritis, affecting millions of people worldwide. It occurs when the protective cartilage that cushions the ends of your bones wears down over time."
35
+ Paralysis (brain haemorrhage),"Intracerebral haemorrhage (ICH) is when blood suddenly bursts into brain tissue, causing damage to your brain. Symptoms usually appear suddenly during ICH. They include headache, weakness, confusion, and paralysis, particularly on one side of your body."
36
+ Paroxysmal Positional Vertigo,"Benign paroxysmal positional vertigo (BPPV) is one of the most common causes of vertigo β€” the sudden sensation that you're spinning or that the inside of your head is spinning. Benign paroxysmal positional vertigo causes brief episodes of mild to intense dizziness."
37
+ Peptic ulcer disease,"Peptic ulcer disease (PUD) is a break in the inner lining of the stomach, the first part of the small intestine, or sometimes the lower oesophagus. An ulcer in the stomach is called a gastric ulcer, while one in the first part of the intestines is a duodenal ulcer."
38
+ Pneumonia,"Pneumonia is an infection in one or both lungs. Bacteria, viruses, and fungi cause it. The infection causes inflammation in the air sacs in your lungs, which are called alveoli. The alveoli fill with fluid or pus, making it difficult to breathe."
39
+ Psoriasis,"Psoriasis is a common skin disorder that forms thick, red, bumpy patches covered with silvery scales. They can pop up anywhere, but most appear on the scalp, elbows, knees, and lower back. Psoriasis can't be passed from person to person. It does sometimes happen in members of the same family."
40
+ Tuberculosis,"Tuberculosis (TB) is an infectious disease usually caused by Mycobacterium tuberculosis (MTB) bacteria. Tuberculosis generally affects the lungs, but can also affect other parts of the body. Most infections show no symptoms, in which case it is known as latent tuberculosis."
41
+ Typhoid,"An acute illness characterized by fever caused by infection with the bacterium Salmonella typhi. Typhoid fever has an insidious onset, with fever, headache, constipation, malaise, chills, and muscle pain. Diarrhoea is uncommon, and vomiting is not usually severe."
42
+ Urinary tract infection,"Urinary tract infection: An infection of the kidney, ureter, bladder, or urethra. Abbreviated UTI. Not everyone with a UTI has symptoms, but common symptoms include a frequent urge to urinate and pain or burning when urinating."
43
+ Varicose veins,"A vein that has enlarged and twisted, often appearing as a bulging, blue blood vessel that is clearly visible through the skin. Varicose veins are most common in older adults, particularly women, and occur especially on the legs."
files/disease_precaution.csv ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Disease,Symptom_precaution_0,Symptom_precaution_1,Symptom_precaution_2,Symptom_precaution_3
2
+ AIDS,avoid open cuts,wear ppe if possible,consult doctor,follow up
3
+ Acne,bath twice,avoid fatty spicy food,drink plenty of water,avoid too many products
4
+ Alcoholic hepatitis,stop alcohol consumption,consult doctor,medication,follow up
5
+ Allergy,apply calamine,cover area with bandage,null,use ice to compress itching
6
+ Arthritis,exercise,use hot and cold therapy,try acupuncture,massage
7
+ Bronchial Asthma,switch to loose cloth,take deep breaths,get away from the trigger,seek help
8
+ Cervical spondylosis,use a heating pad or cold pack,exercise,take an otc pain reliever,consult a doctor
9
+ Chicken pox,use neem in bathing,consume neem leaves,take the vaccine,avoid public places
10
+ Chronic cholestasis,cold baths,anti itch medicine,consult doctor,eat healthy
11
+ Common Cold,drink vitamin c rich drinks,take vapour,avoid cold food,keep fever in check
12
+ Covid,cover mouth,social distancing,wear mask,medication
13
+ Dengue,drink papaya leaf juice,avoid fatty spicy food,keep mosquitos away,keep hydrated
14
+ Diabetes ,have balanced diet,exercise,consult doctor,follow up
15
+ Dimorphic hemorrhoids(piles),avoid fatty spicy food,consume witch hazel,warm bath with Epsom salt,consume aloe vera juice
16
+ Drug Reaction,stop irritation,consult nearest hospital,stop taking drug,follow up
17
+ Fungal infection,bath twice,use Detol or neem in bathing water,keep the infected area dry,use clean cloths
18
+ GERD,avoid fatty spicy food,avoid lying down after eating,maintain healthy weight,exercise
19
+ Gastroenteritis,stop eating solid food for while,try taking small sips of water,rest,ease back into eating
20
+ Heart attack,call an ambulance,chew aspirin,keep calm,null
21
+ Hepatitis A,Consult nearest hospital,wash hands through,avoid fatty spicy food,medication
22
+ Hepatitis B,consult nearest hospital,vaccination,eat healthy,medication
23
+ Hepatitis C,Consult nearest hospital,vaccination,eat healthy,medication
24
+ Hepatitis D,consult doctor,medication,eat healthy,follow up
25
+ Hepatitis E,stop alcohol consumption,rest,consult doctor,medication
26
+ Hypertension ,meditation,salt baths,reduce stress,get proper sleep
27
+ Hyperthyroidism,eat healthy,massage,use lemon balm,take radioactive iodine treatment
28
+ Hypoglycemia,lie down on side,check in pulse,drink sugary drinks,consult doctor
29
+ Hypothyroidism,reduce stress,exercise,eat healthy,get proper sleep
30
+ Impetigo,soak affected area in warm water,use antibiotics,remove scabs with wet compressed cloth,consult doctor
31
+ Jaundice,drink plenty of water,consume milk thistle,eat fruits and high fibre food,medication
32
+ Malaria,Consult nearest hospital,avoid oily food,avoid non veg food,keep mosquitos out
33
+ Migraine,meditation,reduce stress,use polaroid glasses in sun,consult doctor
34
+ Osteoarthritis,acetaminophen,consult nearest hospital,follow up,salt baths
35
+ Paralysis (brain hemorrhage),massage,eat healthy,exercise,consult doctor
36
+ Paroxysmal Positional Vertigo,lie down,avoid sudden changes in the body,avoid abrupt head movement,relax
37
+ Peptic ulcer disease,avoid fatty spicy food,consume probiotic food,eliminate milk,limit alcohol
38
+ Pneumonia,consult doctor,medication,rest,follow up
39
+ Psoriasis,wash hands with warm soapy water,stop bleeding using pressure,consult doctor,salt baths
40
+ Tuberculosis,cover mouth,consult doctor,medication,rest
41
+ Typhoid,eat high calorie vegitables,antiboitic therapy,consult doctor,medication
42
+ Urinary tract infection,drink plenty of water,increase vitamin c intake,drink cranberry juice,take probiotics
43
+ Varicose veins,lie down flat and raise the leg high,use ointments,use vein compression,don't stand still for long
files/symptom_severity.csv ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Symptom,Symptom_severity
2
+ abdominal_pain,4
3
+ abnormal_menstruation,6
4
+ acidity,3
5
+ acute_liver_failure,6
6
+ altered_sensorium,2
7
+ anxiety,4
8
+ back_pain,3
9
+ belly_pain,4
10
+ blackheads,2
11
+ bladder_discomfort,4
12
+ blister,4
13
+ blood_in_sputum,5
14
+ bloody_stool,5
15
+ blurred_and_distorted_vision,5
16
+ breathlessness,4
17
+ brittle_nails,5
18
+ bruising,4
19
+ burning_micturition,6
20
+ chest_pain,7
21
+ chills,3
22
+ cold_hands_and_feet,5
23
+ coma,7
24
+ congestion,5
25
+ constipation,4
26
+ continuous_feel_of_urine,6
27
+ continuous_sneezing,4
28
+ cough,4
29
+ cramps,4
30
+ dark_urine,4
31
+ dehydration,4
32
+ depression,3
33
+ diarrhoea,6
34
+ dischromic_patches,6
35
+ distention_of_abdomen,4
36
+ dizziness,4
37
+ drying_and_tingling_lips,4
38
+ enlarged_thyroid,6
39
+ excessive_hunger,4
40
+ extra_marital_contacts,5
41
+ family_history,5
42
+ fast_heart_rate,5
43
+ fatigue,4
44
+ fluid_overload,6
45
+ fluid_overload,4
46
+ foul_smell_of urine,5
47
+ headache,3
48
+ high_fever,7
49
+ hip_joint_pain,2
50
+ history_of_alcohol_consumption,5
51
+ increased_appetite,5
52
+ indigestion,5
53
+ inflammatory_nails,2
54
+ internal_itching,4
55
+ irregular_sugar_level,5
56
+ irritability,2
57
+ irritation_in_anus,6
58
+ itching,1
59
+ joint_pain,3
60
+ knee_pain,3
61
+ lack_of_concentration,3
62
+ lethargy,2
63
+ loss_of_appetite,4
64
+ loss_of_balance,4
65
+ loss_of_smell,3
66
+ loss_of_taste,5
67
+ malaise,6
68
+ mild_fever,5
69
+ mood_swings,3
70
+ movement_stiffness,5
71
+ mucoid_sputum,4
72
+ muscle_pain,2
73
+ muscle_wasting,3
74
+ muscle_weakness,2
75
+ nausea,5
76
+ neck_pain,5
77
+ nodal_skin_eruptions,4
78
+ obesity,4
79
+ pain_behind_the_eyes,4
80
+ pain_during_bowel_movements,5
81
+ pain_in_anal_region,6
82
+ painful_walking,2
83
+ palpitations,4
84
+ passage_of_gases,5
85
+ patches_in_throat,6
86
+ phlegm,5
87
+ polyuria,4
88
+ prominent_veins_on_calf,6
89
+ puffy_face_and_eyes,5
90
+ pus_filled_pimples,2
91
+ receiving_blood_transfusion,5
92
+ receiving_unsterile_injections,2
93
+ red_sore_around_nose,2
94
+ red_spots_over_body,3
95
+ redness_of_eyes,5
96
+ restlessness,5
97
+ runny_nose,5
98
+ rusty_sputum,4
99
+ scurrying,2
100
+ shivering,5
101
+ silver_like_dusting,2
102
+ sinus_pressure,4
103
+ skin_peeling,3
104
+ skin_rash,3
105
+ slurred_speech,4
106
+ small_dents_in_nails,2
107
+ spinning_movements,6
108
+ spotting_urination,6
109
+ stiff_neck,4
110
+ stomach_bleeding,6
111
+ stomach_pain,5
112
+ sunken_eyes,3
113
+ sweating,3
114
+ swelled_lymph_nodes,6
115
+ swelling_joints,5
116
+ swelling_of_stomach,7
117
+ swollen_blood_vessels,5
118
+ swollen_extremities,5
119
+ swollen_legs,5
120
+ throat_irritation,4
121
+ tiredness,5
122
+ toxic_look_(typhus),5
123
+ ulcers_on_tongue,4
124
+ unsteadiness,4
125
+ visual_disturbances,3
126
+ vomiting,5
127
+ watering_from_eyes,4
128
+ weakness_in_limbs,7
129
+ weakness_of_one_body_side,4
130
+ weight_gain,3
131
+ weight_loss,3
132
+ yellow_crust_ooze,3
133
+ yellow_urine,4
134
+ yellowing_of_eyes,4
135
+ yellowish_skin,3
model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86573ec61239a1fc2b0261165cac937ec3f1455873ea859dcdf2482eae5563cf
3
+ size 5477737
requirements.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ joblib
2
+ matplotlib
3
+ pandas
4
+ numpy
5
+ streamlit
6
+ seaborn
7
+ plotly