Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
How to find the medicines patients took? #256
Comments
freestylezhy
commented
Jul 11, 2017
|
There are some medications information in the noteevents table, in the form of text. For example, These lines are printed:
and DISCHARGE MEDICATIONS:
I am wondering if the medications are present in the database as structured data? Thanks a lot! |
|
The issue is that not all medications have The other alternative is to use the prescriptions table: for that table you just search the drug column for the drugs you are interested in. Note these would be prescriptions and thus not necessarily administered. Finally, admission and discharge medications are best captured by the free-text notes, as you have found. |
freestylezhy commentedJul 11, 2017
Hi,
I am doing a study about the side-effects and interaction of medicines, so I want to find the medicines patients took. So far, I found that D_ITEM table contains all the descriptions of items that should include the medicine information.
In the D_ITEM table, the LABEL under the category of Medications are:
['ADA-A (500ml)' 'Keppra' 'Meperidine (Demerol)' 'Hydromorphone (Dilaudid)'
'Hydralazine' 'Alteplase (TPA)' 'Nicardipine' 'Procainamide'
'Morphine Sulfate' 'Dexmedetomidine (Precedex)' 'Fentanyl' 'Fondaparinux'
'Labetalol' 'Thiamine' 'Calcium Gluconate' 'Metoprolol' 'Adenosine'
'Lidocaine' 'Amiodarone 600/500' 'Potassium Chloride'
'Insulin - Humalog 75/25' 'K Phos' 'Atropine' 'Omeprazole (Prilosec)'
'Midazolam (Versed)' 'Enoxaparin (Lovenox)' 'KCL (Bolus)' 'Vasopressin'
'Eptifibatide (Integrilin)' 'Hydrochloric Acid - HCL' 'Epinephrine'
'ACD-A Citrate (1000ml)' 'Nesiritide' 'Mannitol' 'Citrate'
'Tirofiban (Aggrastat)' 'Insulin - Glargine' 'Naloxone (Narcan)'
'Abciximab (Reopro)' 'Carafate (Sucralfate)' 'Nitroprusside'
'Pantoprazole (Protonix)' 'Cisatracurium' 'Octreotide'
'Furosemide (Lasix)' 'KCL Bolus)' 'Magnesium Sulfate (Bolus)'
'Lansoprazole (Prevacid)' 'Diazepam (Valium)' 'Isuprel' 'KCl (CRRT)'
'Calcium Gluconate (Bolus)' 'Fentanyl (Concentrate)'
'Bivalirudin (Angiomax)' 'Heparin Sodium (Prophylaxis)'
'Magnesium Sulfate (OB-GYN)' 'Famotidine (Pepcid)'
'Ranitidine (Prophylaxis)' 'Heparin Sodium' 'Pentobarbital'
'Fentanyl (Push)' 'Insulin - NPH' 'Calcium Gluconate (CRRT)' 'Vecuronium'
'Norepinephrine' 'Propofol' 'ACD-A Citrate (500ml)' 'Milrinone'
'Drotrecogin (Xigris)' 'Insulin - Regular' 'Vitamin K (Phytonadione)'
'Cyclosporine' 'Aminophylline' 'Insulin - 70/30'
'Furosemide (Lasix) 500/100' 'Diltiazem' 'Insulin - Humalog' 'Dilantin'
'Fosphenytoin' 'Sodium Bicarbonate 8.4%' 'Lorazepam (Ativan)'
'Coumadin (Warfarin)' 'Ketamine' 'Esmolol' 'Dobutamine' 'Dopamine'
'Nitroglycerin' 'Lepirudin' 'Haloperidol (Haldol)' 'Amiodarone' 'Na Phos'
'Phenylephrine' 'Methadone Hydrochloride' 'Acetaminophen-IV' 'Argatroban'
'Magnesium Sulfate' 'Folic Acid' 'Verapamil']
I am wondering if these are all the medicines/drugs patients took during the stay in the hospital? Those seem only a few to me.