Spaces:
Sleeping
Sleeping
File size: 8,288 Bytes
7f1ed25 a615ce7 7f1ed25 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
import json
data = [
{
'patient_id': 1,
'name': 'John Doe',
'age': 45,
'gender': 'Male',
'medical_history': 'Hypertension, Diabetes',
'date': '2024-01-01',
'heart_rate': 75,
'blood_pressure': 120,
'blood_glucose': 90,
'temperature': 98.6,
'medical_complaints': 'Headache',
'symptoms': 'Nausea, Vomiting',
'physical_examination': 'Normal',
'diagnosis': 'Hypertension',
'extra_notes': 'Advised to reduce salt intake',
'treatment': 'Medication'
},
{
'patient_id': 1,
'name': 'John Doe',
'age': 45,
'gender': 'Male',
'medical_history': 'Hypertension, Diabetes',
'date': '2024-02-01',
'heart_rate': 78,
'blood_pressure': 125,
'blood_glucose': 95,
'temperature': 98.7,
'medical_complaints': 'Dizziness',
'symptoms': 'Dizziness',
'physical_examination': 'Slightly elevated blood pressure',
'diagnosis': 'Diabetes',
'extra_notes': 'Adjusted medication dosage',
'treatment': 'Medication'
},
{
'patient_id': 1,
'name': 'John Doe',
'age': 45,
'gender': 'Male',
'medical_history': 'Hypertension, Diabetes',
'date': '2024-03-01',
'heart_rate': 80,
'blood_pressure': 130,
'blood_glucose': 100,
'temperature': 98.8,
'medical_complaints': 'Fatigue',
'symptoms': 'Lethargy',
'physical_examination': 'Increased heart rate',
'diagnosis': 'Hypertension',
'extra_notes': 'Recommended regular exercise',
'treatment': 'Lifestyle changes'
},
{
'patient_id': 2,
'name': 'Jane Smith',
'age': 38,
'gender': 'Female',
'medical_history': 'Asthma',
'date': '2024-01-02',
'heart_rate': 88,
'blood_pressure': 135,
'blood_glucose': 110,
'temperature': 99.0,
'medical_complaints': 'Shortness of breath',
'symptoms': 'Coughing, Wheezing',
'physical_examination': 'Wheezing in lungs',
'diagnosis': 'Asthma',
'extra_notes': 'Prescribed inhaler',
'treatment': 'Inhaler'
},
{
'patient_id': 2,
'name': 'Jane Smith',
'age': 38,
'gender': 'Female',
'medical_history': 'Asthma',
'date': '2024-02-02',
'heart_rate': 85,
'blood_pressure': 130,
'blood_glucose': 108,
'temperature': 98.9,
'medical_complaints': 'Wheezing',
'symptoms': 'Shortness of breath',
'physical_examination': 'Mild respiratory distress',
'diagnosis': 'Asthma',
'extra_notes': 'Reviewed inhaler technique',
'treatment': 'Inhaler'
},
{
'patient_id': 2,
'name': 'Jane Smith',
'age': 38,
'gender': 'Female',
'medical_history': 'Asthma',
'date': '2024-03-02',
'heart_rate': 82,
'blood_pressure': 128,
'blood_glucose': 105,
'temperature': 98.8,
'medical_complaints': 'Coughing',
'symptoms': 'Mild fever',
'physical_examination': 'Normal',
'diagnosis': 'Asthma',
'extra_notes': 'Advised on avoiding allergens',
'treatment': 'Inhaler'
},
{
'patient_id': 3,
'name': 'Emily Davis',
'age': 50,
'gender': 'Female',
'medical_history': 'Cardiovascular Disease',
'date': '2024-01-03',
'heart_rate': 92,
'blood_pressure': 145,
'blood_glucose': 100,
'temperature': 98.6,
'medical_complaints': 'Chest pain',
'symptoms': 'Chest pain, Fatigue',
'physical_examination': 'Irregular heartbeat',
'diagnosis': 'Cardiovascular Disease',
'extra_notes': 'Scheduled for ECG',
'treatment': 'Medication'
},
{
'patient_id': 3,
'name': 'Emily Davis',
'age': 50,
'gender': 'Female',
'medical_history': 'Cardiovascular Disease',
'date': '2024-02-03',
'heart_rate': 90,
'blood_pressure': 142,
'blood_glucose': 98,
'temperature': 98.5,
'medical_complaints': 'Palpitations',
'symptoms': 'Shortness of breath',
'physical_examination': 'Normal',
'diagnosis': 'Cardiovascular Disease',
'extra_notes': 'Referred to cardiologist',
'treatment': 'Follow-up'
},
{
'patient_id': 3,
'name': 'Emily Davis',
'age': 50,
'gender': 'Female',
'medical_history': 'Cardiovascular Disease',
'date': '2024-03-03',
'heart_rate': 88,
'blood_pressure': 140,
'blood_glucose': 96,
'temperature': 98.4,
'medical_complaints': 'Shortness of breath',
'symptoms': 'Palpitations',
'physical_examination': 'Normal',
'diagnosis': 'Cardiovascular Disease',
'extra_notes': 'Reviewed medication',
'treatment': 'Medication'
},
{
'patient_id': 4,
'name': 'Michael Brown',
'age': 60,
'gender': 'Male',
'medical_history': 'Chronic Kidney Disease',
'date': '2024-01-04',
'heart_rate': 70,
'blood_pressure': 110,
'blood_glucose': 85,
'temperature': 97.5,
'medical_complaints': 'Fatigue',
'symptoms': 'Fatigue',
'physical_examination': 'Normal',
'diagnosis': 'Chronic Kidney Disease',
'extra_notes': 'Advised on diet and hydration',
'treatment': 'Medication'
},
{
'patient_id': 4,
'name': 'Michael Brown',
'age': 60,
'gender': 'Male',
'medical_history': 'Chronic Kidney Disease',
'date': '2024-02-04',
'heart_rate': 72,
'blood_pressure': 112,
'blood_glucose': 87,
'temperature': 97.6,
'medical_complaints': 'Nausea',
'symptoms': 'Nausea',
'physical_examination': 'Mild dehydration',
'diagnosis': 'Chronic Kidney Disease',
'extra_notes': 'Adjusted medication',
'treatment': 'Medication'
},
{
'patient_id': 4,
'name': 'Michael Brown',
'age': 60,
'gender': 'Male',
'medical_history': 'Chronic Kidney Disease',
'date': '2024-03-04',
'heart_rate': 74,
'blood_pressure': 115,
'blood_glucose': 89,
'temperature': 97.7,
'medical_complaints': 'Vomiting',
'symptoms': 'Vomiting',
'physical_examination': 'Normal',
'diagnosis': 'Chronic Kidney Disease',
'extra_notes': 'Referred to specialist',
'treatment': 'Referral'
},
{
'patient_id': 5,
'name': 'Sarah Wilson',
'age': 30,
'gender': 'Female',
'medical_history': 'Healthy',
'date': '2024-01-05',
'heart_rate': 65,
'blood_pressure': 100,
'blood_glucose': 75,
'temperature': 98.2,
'medical_complaints': 'None',
'symptoms': 'None',
'physical_examination': 'Normal',
'diagnosis': 'Healthy',
'extra_notes': 'None',
'treatment': 'None'
},
{
'patient_id': 5,
'name': 'Sarah Wilson',
'age': 30,
'gender': 'Female',
'medical_history': 'Healthy',
'date': '2024-02-05',
'heart_rate': 67,
'blood_pressure': 102,
'blood_glucose': 77,
'temperature': 98.3,
'medical_complaints': 'None',
'symptoms': 'None',
'physical_examination': 'Normal',
'diagnosis': 'Healthy',
'extra_notes': 'None',
'treatment': 'None'
},
{
'patient_id': 5,
'name': 'Sarah Wilson',
'age': 30,
'gender': 'Female',
'medical_history': 'Healthy',
'date': '2024-03-05',
'heart_rate': 69,
'blood_pressure': 105,
'blood_glucose': 79,
'temperature': 98.4,
'medical_complaints': 'None',
'symptoms': 'None',
'physical_examination': 'Normal',
'diagnosis': 'Healthy',
'extra_notes': 'None',
'treatment': 'None'
}
]
|