Upload 10 files
Browse files- .gitattributes +1 -0
- Medical Drugs.ipynb +101 -0
- api.py +67 -0
- app.py +187 -0
- data/data-00000-of-00001.arrow +3 -0
- data/dataset_info.json +35 -0
- data/state.json +13 -0
- drugsComTest_raw.csv +3 -0
- requirements.txt +10 -0
- train.ipynb +1509 -0
- unique_drugs.txt +221 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
drugsComTest_raw.csv filter=lfs diff=lfs merge=lfs -text
|
Medical Drugs.ipynb
ADDED
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "markdown",
|
5 |
+
"metadata": {
|
6 |
+
"id": "m_Oa5BjYS_UF"
|
7 |
+
},
|
8 |
+
"source": [
|
9 |
+
"# Semantic search with FAISS (TensorFlow)"
|
10 |
+
]
|
11 |
+
},
|
12 |
+
{
|
13 |
+
"cell_type": "code",
|
14 |
+
"execution_count": null,
|
15 |
+
"metadata": {
|
16 |
+
"id": "sjgafp3ZS_UH"
|
17 |
+
},
|
18 |
+
"outputs": [],
|
19 |
+
"source": [
|
20 |
+
"!pip install datasets evaluate transformers[sentencepiece]\n",
|
21 |
+
"!pip install faiss-cpu"
|
22 |
+
]
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"cell_type": "code",
|
26 |
+
"execution_count": null,
|
27 |
+
"metadata": {
|
28 |
+
"id": "UWljEBCWS_UR"
|
29 |
+
},
|
30 |
+
"outputs": [],
|
31 |
+
"source": [
|
32 |
+
"import pandas as pd\n",
|
33 |
+
"from datasets import load_from_disk\n",
|
34 |
+
"from transformers import AutoTokenizer, TFAutoModel\n",
|
35 |
+
"\n",
|
36 |
+
"Drugs = ['Acne', 'Adhd', 'Allergies', 'Anaemia', 'Angina', 'Appetite',\n",
|
37 |
+
" 'Arthritis', 'Constipation', 'Contraception', 'Dandruff',\n",
|
38 |
+
" 'Diabetes', 'Digestion', 'Fever', 'Fungal', 'General', 'Glaucoma',\n",
|
39 |
+
" 'Gout', 'Haematopoiesis', 'Haemorrhoid', 'Hyperpigmentation',\n",
|
40 |
+
" 'Hypertension', 'Hyperthyroidism', 'Hypnosis', 'Hypothyroidism',\n",
|
41 |
+
" 'Infection', 'Migraine', 'Osteoporosis', 'Pain', 'Psychosis',\n",
|
42 |
+
" 'Schizophrenia', 'Supplement', 'Thrombolysis', 'Viral', 'Wound']\n",
|
43 |
+
"\n",
|
44 |
+
"model_ckpt = \"sentence-transformers/multi-qa-mpnet-base-dot-v1\"\n",
|
45 |
+
"tokenizer = AutoTokenizer.from_pretrained(model_ckpt)\n",
|
46 |
+
"model = TFAutoModel.from_pretrained(model_ckpt, from_pt=True)\n",
|
47 |
+
"\n",
|
48 |
+
"def cls_pooling(model_output):\n",
|
49 |
+
" return model_output.last_hidden_state[:, 0]\n",
|
50 |
+
"\n",
|
51 |
+
"def get_embeddings(text_list):\n",
|
52 |
+
" encoded_input = tokenizer(\n",
|
53 |
+
" text_list, padding=True, truncation=True, return_tensors=\"tf\"\n",
|
54 |
+
" )\n",
|
55 |
+
" encoded_input = {k: v for k, v in encoded_input.items()}\n",
|
56 |
+
" model_output = model(**encoded_input)\n",
|
57 |
+
" return cls_pooling(model_output)\n",
|
58 |
+
"\n",
|
59 |
+
"\n",
|
60 |
+
"embeddings_dataset = load_from_disk(\"/content/drive/MyDrive/Drugs\")\n",
|
61 |
+
"embeddings_dataset.add_faiss_index(column=\"embeddings\")\n",
|
62 |
+
"\n",
|
63 |
+
"def recommendations(question):\n",
|
64 |
+
" question_embedding = get_embeddings([question]).numpy()\n",
|
65 |
+
" scores, samples = embeddings_dataset.get_nearest_examples(\n",
|
66 |
+
" \"embeddings\", question_embedding, k=5\n",
|
67 |
+
" )\n",
|
68 |
+
" samples_df = pd.DataFrame.from_dict(samples)\n",
|
69 |
+
" samples_df[\"scores\"] = scores\n",
|
70 |
+
" samples_df.sort_values(\"sc>ores\", ascending=False, inplace=True)\n",
|
71 |
+
" return samples_df[['Drug_Name', 'Reason', 'scores']]"
|
72 |
+
]
|
73 |
+
},
|
74 |
+
{
|
75 |
+
"cell_type": "code",
|
76 |
+
"execution_count": null,
|
77 |
+
"metadata": {
|
78 |
+
"id": "fGRtwhvTcZ9t"
|
79 |
+
},
|
80 |
+
"outputs": [],
|
81 |
+
"source": [
|
82 |
+
"question = \"moderate acne\"\n",
|
83 |
+
"recommendations(question)"
|
84 |
+
]
|
85 |
+
}
|
86 |
+
],
|
87 |
+
"metadata": {
|
88 |
+
"colab": {
|
89 |
+
"provenance": []
|
90 |
+
},
|
91 |
+
"kernelspec": {
|
92 |
+
"display_name": "Python 3",
|
93 |
+
"name": "python3"
|
94 |
+
},
|
95 |
+
"language_info": {
|
96 |
+
"name": "python"
|
97 |
+
}
|
98 |
+
},
|
99 |
+
"nbformat": 4,
|
100 |
+
"nbformat_minor": 0
|
101 |
+
}
|
api.py
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from typing import Any
|
2 |
+
import uvicorn
|
3 |
+
import json
|
4 |
+
from fastapi import FastAPI, File, UploadFile, HTTPException, Form, Body
|
5 |
+
from fastapi.responses import JSONResponse, StreamingResponse
|
6 |
+
from fastapi.middleware.cors import CORSMiddleware
|
7 |
+
import pandas as pd
|
8 |
+
from datasets import load_from_disk
|
9 |
+
from transformers import AutoTokenizer, TFAutoModel
|
10 |
+
from dotenv import load_dotenv
|
11 |
+
|
12 |
+
load_dotenv()
|
13 |
+
|
14 |
+
app = FastAPI()
|
15 |
+
app.add_middleware(
|
16 |
+
CORSMiddleware,
|
17 |
+
allow_origins=["*"],
|
18 |
+
allow_credentials=True,
|
19 |
+
allow_methods=["*"],
|
20 |
+
allow_headers=["*"],
|
21 |
+
)
|
22 |
+
|
23 |
+
model_ckpt = "sentence-transformers/multi-qa-mpnet-base-dot-v1"
|
24 |
+
tokenizer = AutoTokenizer.from_pretrained(model_ckpt)
|
25 |
+
model = TFAutoModel.from_pretrained(model_ckpt, from_pt=True)
|
26 |
+
|
27 |
+
def cls_pooling(model_output):
|
28 |
+
return model_output.last_hidden_state[:, 0]
|
29 |
+
|
30 |
+
def get_embeddings(text_list):
|
31 |
+
encoded_input = tokenizer(
|
32 |
+
text_list, padding=True, truncation=True, return_tensors="tf"
|
33 |
+
)
|
34 |
+
encoded_input = {k: v for k, v in encoded_input.items()}
|
35 |
+
model_output = model(**encoded_input)
|
36 |
+
return cls_pooling(model_output)
|
37 |
+
|
38 |
+
embeddings_dataset = load_from_disk("data")
|
39 |
+
embeddings_dataset.add_faiss_index(column="embeddings")
|
40 |
+
|
41 |
+
def recommendations(question):
|
42 |
+
question_embedding = get_embeddings([question]).numpy()
|
43 |
+
scores, samples = embeddings_dataset.get_nearest_examples(
|
44 |
+
"embeddings", question_embedding, k=5
|
45 |
+
)
|
46 |
+
samples_df = pd.DataFrame.from_dict(samples)
|
47 |
+
samples_df["scores"] = scores
|
48 |
+
samples_df.sort_values("scores", ascending=False, inplace=True,ignore_index=True)
|
49 |
+
return samples_df[['drugName', 'review', 'scores']]
|
50 |
+
|
51 |
+
@app.post("/recommend")
|
52 |
+
async def upload_image(question: str = Body(...,embed=True)):
|
53 |
+
custom_recommendation_result = recommendations(question)
|
54 |
+
custom_recommendation_result = custom_recommendation_result.to_dict(orient='records')
|
55 |
+
custom_recommendation_result = json.dumps(custom_recommendation_result)
|
56 |
+
return JSONResponse({"data":json.loads(custom_recommendation_result)},status_code=200)
|
57 |
+
|
58 |
+
# @app.post("/drugs")
|
59 |
+
# async def upload_image(drug: str = Form(...)):
|
60 |
+
# recommendation_result = recommendations(drug)
|
61 |
+
# recommendation_result = recommendation_result.to_dict(orient='records')
|
62 |
+
# recommendation_result = json.dumps(recommendation_result)
|
63 |
+
# return JSONResponse({"data":json.loads(recommendation_result)},status_code=200)
|
64 |
+
|
65 |
+
|
66 |
+
if __name__ == '__main__':
|
67 |
+
uvicorn.run(app, host="127.0.0.1", port=5000)
|
app.py
ADDED
@@ -0,0 +1,187 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import streamlit as st
|
3 |
+
import pandas as pd
|
4 |
+
from datasets import load_from_disk
|
5 |
+
from transformers import AutoTokenizer, TFAutoModel
|
6 |
+
from dotenv import load_dotenv
|
7 |
+
|
8 |
+
load_dotenv()
|
9 |
+
|
10 |
+
# Drugs = os.getenv('DRUGS')
|
11 |
+
|
12 |
+
Drugs = ['Amitriptyline', 'Ambien', 'Aripiprazole', 'Actos', 'Aubra',
|
13 |
+
'Amphetamine / dextroamphetamine', 'Afrezza',
|
14 |
+
'Aluminum chloride hexahydrate', 'Acetaminophen / hydrocodone',
|
15 |
+
'Aviane', 'Aldesleukin', 'Acamprosate', 'Azathioprine',
|
16 |
+
'Adapalene / benzoyl peroxide',
|
17 |
+
'Acetaminophen / butalbital / caffeine', 'Accutane',
|
18 |
+
'Ayr Saline Nasal', 'Asenapine', 'Adipex-P', 'Augmentin', 'Apri',
|
19 |
+
'Alesse', 'Aspirin / carisoprodol', 'Azelaic acid', 'Azithromycin',
|
20 |
+
'Alpha 1-proteinase inhibitor', 'Abilify', 'Amlodipine',
|
21 |
+
'Arimidex', 'Acetaminophen / codeine', 'Advair Diskus',
|
22 |
+
'Alprazolam', 'Alcaftadine',
|
23 |
+
'Acetaminophen / dexbrompheniramine / pseudoephedrine', 'AndroGel',
|
24 |
+
'Avinza', 'Ativan', 'Atomoxetine', 'Alphagan P', 'Apremilast',
|
25 |
+
'Advair HFA', 'Anastrozole', 'Azor', 'Azelastine / fluticasone',
|
26 |
+
'Amerge', 'Avonex Pen', 'Acetaminophen / oxycodone',
|
27 |
+
'Abacavir / dolutegravir / lamivudine', 'Adderall', 'Atorvastatin',
|
28 |
+
'Aptensio XR',
|
29 |
+
'Acetaminophen / dichloralphenazone / isometheptene mucate',
|
30 |
+
'Acyclovir', 'Armodafinil', 'Adderall XR',
|
31 |
+
'Antipyrine / benzocaine', 'Aczone', 'Amoxicillin / clavulanate',
|
32 |
+
'Adalimumab', 'Aranesp', 'Ammonium lactate / halobetasol',
|
33 |
+
'Atenolol', 'Avelox', 'Azithromycin Dose Pack', 'Adapalene',
|
34 |
+
'Amoxicillin', 'Acetaminophen / aspirin / caffeine', 'Azelastine',
|
35 |
+
'Albuterol', 'Amethyst', 'Asacol', 'Aleve', 'Alprostadil',
|
36 |
+
'Astelin', 'Atropine / hyoscyamine / phenobarbital / scopolamine','Ascorbic acid', 'Asthmanefrin', 'Allegra-D 12 Hour', 'Amikacin',
|
37 |
+
'Arixtra', 'Apokyn', 'AbobotulinumtoxinA', 'Axid', 'Accolate',
|
38 |
+
'Adoxa', 'Aspirin / caffeine', 'Aliskiren / hydrochlorothiazide',
|
39 |
+
'Afinitor', 'Acetaminophen / phenylephrine', 'Atacand',
|
40 |
+
'Allergy DN PE','Bactrim', 'Belviq', 'Blisovi Fe 1 / 20',
|
41 |
+
'Benzoyl peroxide / clindamycin', 'BuSpar', 'Bupropion',
|
42 |
+
'Bacitracin / neomycin / polymyxin b', 'Brisdelle', 'Beyaz',
|
43 |
+
'Buprenorphine / naloxone', 'Benzonatate', 'Bisacodyl', 'Buprenex',
|
44 |
+
'Benzoyl peroxide / erythromycin', 'Budeprion SR',
|
45 |
+
'Bupropion / naltrexone', 'Belsomra', 'Bevacizumab',
|
46 |
+
'Barium sulfate', 'Bismuth subsalicylate', 'Brovana', 'Buspirone',
|
47 |
+
'Bronkaid', 'Benzocaine', 'Butrans', 'Bunavail', 'Benicar',
|
48 |
+
'Benadryl Allergy', 'Benadryl', 'Biotin', 'Bromfed DM',
|
49 |
+
'Breo Ellipta', 'Biaxin', 'Botox', 'Buprenorphine',
|
50 |
+
'Benzoic acid / salicylic acid', 'Brimonidine / timolol',
|
51 |
+
'Beclomethasone', 'Bydureon', 'Bonine', 'Brilinta', 'Bactrim DS',
|
52 |
+
'Brexpiprazole', 'Baclofen', 'Benazepril', 'Biaxin XL', 'Basaglar',
|
53 |
+
'Bismuth subcitrate potassium / metronidazole / tetracycline',
|
54 |
+
'Belbuca', 'Bromocriptine', 'Budesonide / formoterol',
|
55 |
+
'Blisovi 24 Fe', 'Bystolic', 'Banzel', 'Balacet', 'Balsalazide',
|
56 |
+
'Benlysta', 'Belimumab', 'Byetta',
|
57 |
+
'Bisoprolol / hydrochlorothiazide', 'Butorphanol', 'Boniva',
|
58 |
+
'Briviact', 'Brimonidine', 'Biafine', 'Betaseron',
|
59 |
+
'Benazepril / hydrochlorothiazide', 'Benzoyl peroxide / sulfur',
|
60 |
+
'Bisacodyl / polyethylene glycol 3350 / potassium chloride / sodium bicarbonate / sodium chloride',
|
61 |
+
'Balsam peru / castor oil / trypsin',
|
62 |
+
'Betamethasone / calcipotriene', 'Budeprion XL', 'Benicar HCT',
|
63 |
+
'Bepotastine', 'Bentyl', 'Brompheniramine', 'Benzaclin',
|
64 |
+
'Bisoprolol', 'Budesonide', 'Bontril Slow Release', 'Bepreve','Berinert', 'Benzoyl peroxide', 'Belladonna / opium',
|
65 |
+
'Butabarbital', 'Bioflavonoids / zinc glycinate', 'Brodalumab',
|
66 |
+
'Bicillin L-A', 'Bimatoprost', 'Benztropine', 'Bethanechol',
|
67 |
+
'Bupivacaine', 'Bosutinib', 'Bismuth subgallate', 'BenzEFoam',
|
68 |
+
'Brivaracetam', 'Blistex','Contrave', 'Cyclafem 1 / 35', 'Copper', 'Chantix',
|
69 |
+
'Ciprofloxacin', 'Cyclosporine', 'Clonazepam', 'Ciclopirox',
|
70 |
+
'Campral', 'Cryselle', 'Clindamycin', 'Clonidine', 'Celecoxib',
|
71 |
+
'Caffeine', 'Clarithromycin', 'Clomiphene', 'Clotrimazole',
|
72 |
+
'Celexa', 'Codeine / guaifenesin', 'Cefuroxime', 'Cymbalta',
|
73 |
+
'Canagliflozin', 'Citalopram', 'Corticotropin', 'Cefdinir',
|
74 |
+
'Carvedilol', 'Chlordiazepoxide', 'CellCept',
|
75 |
+
'Cobicistat / elvitegravir / emtricitabine / tenofovir alafenamide',
|
76 |
+
'Chateal', 'Cyclobenzaprine', 'Cialis', 'Cholestyramine', 'Cozaar',
|
77 |
+
'Catapres', 'Carbidopa / levodopa', 'Carisoprodol',
|
78 |
+
'Citric acid / magnesium oxide / sodium picosulfate', 'Cetirizine',
|
79 |
+
'Cambia', 'Clindamycin / tretinoin', 'Crestor', 'Copaxone',
|
80 |
+
'Chlorpheniramine / hydrocodone / pseudoephedrine',
|
81 |
+
'Cobicistat / elvitegravir / emtricitabine / tenofovir',
|
82 |
+
'Cogentin', 'Cosentyx', 'Cipro', 'Cytomel', 'Camrese', 'Clomid',
|
83 |
+
'Celebrex', 'Colesevelam', 'Clozapine', 'Cutivate', 'Cyred',
|
84 |
+
'Concerta', 'Chlorpheniramine / hydrocodone', 'Claravis',
|
85 |
+
'Cyanocobalamin', 'Clopidogrel', 'Cyproheptadine',
|
86 |
+
'Chlordiazepoxide / clidinium', 'Carbamazepine', 'Crisaborole',
|
87 |
+
'Colchicine', 'Ciprofloxacin / dexamethasone', 'Clomipramine',
|
88 |
+
'Cabergoline', 'Carac', 'Cephalexin', 'Cariprazine', 'Correctol',
|
89 |
+
'Celestone', 'Creon', 'Clobetasol', 'Colazal', 'Chlorzoxazone',
|
90 |
+
'Cenestin', 'Casodex', 'Cinryze', 'Claritin-D', 'Chlorhexidine',
|
91 |
+
'Complera', 'Cervidil', 'Cefixime', 'Coreg', 'Camila',
|
92 |
+
'Clorazepate', 'Cevimeline', 'Cosopt', 'Chondroitin / glucosamine','Citrate of Magnesia', 'Coricidin HBP Cold & Flu', 'Cefditoren',
|
93 |
+
'Ceftibuten', 'Cyclessa', 'Cortef', 'Calcium acetate', 'Cyclizine',
|
94 |
+
'Coagulation factor ix', 'Colace', 'Carmol 20', 'Calan SR',
|
95 |
+
'Cyklokapron', 'Coal tar', 'Cobicistat / darunavir', 'Calamine',
|
96 |
+
'CoQ10','Duloxetine', 'Depakote', 'Drospirenone / estradiol',
|
97 |
+
'Depo-Provera', 'Desyrel', 'Desvenlafaxine',
|
98 |
+
'Drospirenone / ethinyl estradiol', 'Doxylamine / pyridoxine',
|
99 |
+
'Demerol', 'Dextromethorphan', 'Diazepam', 'Diphenhydramine',
|
100 |
+
'Denosumab', 'Dulaglutide', 'Drysol', 'Divalproex sodium',
|
101 |
+
'Doxycycline', 'Desogestrel / ethinyl estradiol', 'Duofilm',
|
102 |
+
'Dicyclomine', 'Dexmethylphenidate', 'Diltiazem', 'Dapsone',
|
103 |
+
'Dalfampridine', 'Dilantin', 'Dienogest / estradiol', 'Diclofenac',
|
104 |
+
'Donnatal', 'Depakote ER', 'Donepezil', 'Dulcolax', 'Dulera',
|
105 |
+
'Dapagliflozin', 'Duexis', 'Differin', 'Doxepin', 'Docosanol',
|
106 |
+
'Diclegis', 'Desloratadine',
|
107 |
+
'Drospirenone / ethinyl estradiol / levomefolate calcium', 'Duac',
|
108 |
+
'Deplin', 'Doryx', 'Dilaudid', 'Dimenhydrinate', 'Delsym',
|
109 |
+
'Denavir', 'D.H.E. 45', 'Disulfiram', 'Droperidol', 'Dasatinib',
|
110 |
+
'Dextrostat', 'Dymista', 'Dextroamphetamine', 'DDAVP Rhinal Tube',
|
111 |
+
'Dabigatran', 'Dasabuvir / ombitasvir / paritaprevir / ritonavir',
|
112 |
+
'Dextromethorphan / guaifenesin', 'Diflucan', 'Debrox',
|
113 |
+
'Diphenhydramine / naproxen', 'Daklinza', 'Daliresp',
|
114 |
+
'Dihydroergotamine', 'Dinoprostone', 'Dermal filler', 'Doxylamine',
|
115 |
+
'Daytrana', 'Diprivan', 'Dexlansoprazole', 'Dovonex', 'Doral',
|
116 |
+
'Desquam-X Wash', 'Dexilant', 'Dofetilide', 'Diovan HCT', 'Detrol',
|
117 |
+
"Dimetapp Children's Cold & Cough", 'Delatestryl', 'Desipramine',
|
118 |
+
'Daclatasvir', 'Depo-Testosterone', 'Dulcolax Laxative',
|
119 |
+
'Dexamethasone', 'Dimethyl fumarate', 'Dronabinol', 'Duragesic',
|
120 |
+
'Dexedrine', 'Dupixent', 'Dramamine','Daypro', 'Dyazide', 'Deltasone', 'Depo-Medrol',
|
121 |
+
'Dapagliflozin / metformin', 'Dilaudid-HP', 'Doxorubicin',
|
122 |
+
'Deoxycholic acid',
|
123 |
+
'Dextromethorphan / phenylephrine / pyrilamine',
|
124 |
+
'Diphenhydramine / ibuprofen', 'Divigel', 'Dermatop']
|
125 |
+
|
126 |
+
model_ckpt = "sentence-transformers/multi-qa-mpnet-base-dot-v1"
|
127 |
+
tokenizer = AutoTokenizer.from_pretrained(model_ckpt)
|
128 |
+
model = TFAutoModel.from_pretrained(model_ckpt, from_pt=True)
|
129 |
+
|
130 |
+
def cls_pooling(model_output):
|
131 |
+
return model_output.last_hidden_state[:, 0]
|
132 |
+
|
133 |
+
def get_embeddings(text_list):
|
134 |
+
encoded_input = tokenizer(
|
135 |
+
text_list, padding=True, truncation=True, return_tensors="tf"
|
136 |
+
)
|
137 |
+
encoded_input = {k: v for k, v in encoded_input.items()}
|
138 |
+
model_output = model(**encoded_input)
|
139 |
+
return cls_pooling(model_output)
|
140 |
+
|
141 |
+
embeddings_dataset = load_from_disk("data")
|
142 |
+
embeddings_dataset.add_faiss_index(column="embeddings")
|
143 |
+
|
144 |
+
def recommendations(question):
|
145 |
+
question_embedding = get_embeddings([question]).numpy()
|
146 |
+
scores, samples = embeddings_dataset.get_nearest_examples(
|
147 |
+
"embeddings", question_embedding, k=5
|
148 |
+
)
|
149 |
+
samples_df = pd.DataFrame.from_dict(samples)
|
150 |
+
samples_df["scores"] = scores
|
151 |
+
samples_df.sort_values("scores", ascending=False, inplace=True,ignore_index=True)
|
152 |
+
return samples_df[['drugName', 'review', 'scores']]
|
153 |
+
|
154 |
+
# Create Streamlit app
|
155 |
+
st.title("Drug Recommendation System")
|
156 |
+
|
157 |
+
st.markdown(
|
158 |
+
"""
|
159 |
+
<style>
|
160 |
+
#MainMenu {visibility: hidden;}
|
161 |
+
footer {visibility: hidden;}
|
162 |
+
</style>
|
163 |
+
""",
|
164 |
+
unsafe_allow_html=True
|
165 |
+
)
|
166 |
+
|
167 |
+
|
168 |
+
# Allow users to select a default question or input their own
|
169 |
+
st.sidebar.title("Choose or Enter a Question:")
|
170 |
+
selection_type = st.sidebar.radio("Select type:", ("Select Default", "Enter Custom"))
|
171 |
+
|
172 |
+
if selection_type == "Select Default":
|
173 |
+
selected_question = st.sidebar.selectbox("Select a question", Drugs)
|
174 |
+
if st.sidebar.button("Show Recommendations"):
|
175 |
+
recommendation_result = recommendations(selected_question)
|
176 |
+
st.header(f"Top 5 Recommended Drugs for '{selected_question}':")
|
177 |
+
st.table(recommendation_result)
|
178 |
+
else:
|
179 |
+
default_question = "I've acne problem"
|
180 |
+
custom_question = st.sidebar.text_input("Enter your question:", default_question)
|
181 |
+
if st.sidebar.button("Get Recommendations"):
|
182 |
+
if custom_question:
|
183 |
+
custom_recommendation_result = recommendations(custom_question)
|
184 |
+
st.header("Top 5 Recommended Drugs for Your Question:")
|
185 |
+
st.table(custom_recommendation_result)
|
186 |
+
else:
|
187 |
+
st.warning("Please enter a question to get recommendations.")
|
data/data-00000-of-00001.arrow
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b7537370f1a6e5f3e450982a5fad98e2da32cb0d56eb1a3aba8e748cef31f391
|
3 |
+
size 217035936
|
data/dataset_info.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"citation": "",
|
3 |
+
"description": "",
|
4 |
+
"features": {
|
5 |
+
"drugName": {
|
6 |
+
"dtype": "string",
|
7 |
+
"_type": "Value"
|
8 |
+
},
|
9 |
+
"condition": {
|
10 |
+
"dtype": "string",
|
11 |
+
"_type": "Value"
|
12 |
+
},
|
13 |
+
"review": {
|
14 |
+
"dtype": "string",
|
15 |
+
"_type": "Value"
|
16 |
+
},
|
17 |
+
"problem": {
|
18 |
+
"dtype": "string",
|
19 |
+
"_type": "Value"
|
20 |
+
},
|
21 |
+
"__index_level_0__": {
|
22 |
+
"dtype": "int64",
|
23 |
+
"_type": "Value"
|
24 |
+
},
|
25 |
+
"embeddings": {
|
26 |
+
"feature": {
|
27 |
+
"dtype": "float32",
|
28 |
+
"_type": "Value"
|
29 |
+
},
|
30 |
+
"_type": "Sequence"
|
31 |
+
}
|
32 |
+
},
|
33 |
+
"homepage": "",
|
34 |
+
"license": ""
|
35 |
+
}
|
data/state.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_data_files": [
|
3 |
+
{
|
4 |
+
"filename": "data-00000-of-00001.arrow"
|
5 |
+
}
|
6 |
+
],
|
7 |
+
"_fingerprint": "11ff2f8654d3c755",
|
8 |
+
"_format_columns": null,
|
9 |
+
"_format_kwargs": {},
|
10 |
+
"_format_type": null,
|
11 |
+
"_output_all_columns": false,
|
12 |
+
"_split": null
|
13 |
+
}
|
drugsComTest_raw.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dfdaa5245b3f24e2af2b26ff4b21b798159c2d54184da9846c9458b83d1897c3
|
3 |
+
size 27637580
|
requirements.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
streamlit==1.38.0
|
2 |
+
datasets==2.21.0
|
3 |
+
transformers==4.44.2
|
4 |
+
python-dotenv==1.0.1
|
5 |
+
uvicorn==0.30.6
|
6 |
+
fastapi==0.112.2
|
7 |
+
tensorflow==2.17.0
|
8 |
+
tf-keras==2.17.0
|
9 |
+
torch==2.4.0
|
10 |
+
faiss-cpu==1.8.0
|
train.ipynb
ADDED
@@ -0,0 +1,1509 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "code",
|
5 |
+
"execution_count": 1,
|
6 |
+
"metadata": {},
|
7 |
+
"outputs": [],
|
8 |
+
"source": [
|
9 |
+
"import pandas as pd"
|
10 |
+
]
|
11 |
+
},
|
12 |
+
{
|
13 |
+
"cell_type": "code",
|
14 |
+
"execution_count": 2,
|
15 |
+
"metadata": {},
|
16 |
+
"outputs": [],
|
17 |
+
"source": [
|
18 |
+
"data = pd.read_csv(\"drugsComTest_raw.csv\")"
|
19 |
+
]
|
20 |
+
},
|
21 |
+
{
|
22 |
+
"cell_type": "code",
|
23 |
+
"execution_count": 3,
|
24 |
+
"metadata": {},
|
25 |
+
"outputs": [],
|
26 |
+
"source": [
|
27 |
+
"data['problem'] = data['condition'] +\"\\n\" + data['review']"
|
28 |
+
]
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"cell_type": "code",
|
32 |
+
"execution_count": 4,
|
33 |
+
"metadata": {},
|
34 |
+
"outputs": [],
|
35 |
+
"source": [
|
36 |
+
"data = data[['drugName','condition','review','problem']]"
|
37 |
+
]
|
38 |
+
},
|
39 |
+
{
|
40 |
+
"cell_type": "code",
|
41 |
+
"execution_count": 5,
|
42 |
+
"metadata": {},
|
43 |
+
"outputs": [
|
44 |
+
{
|
45 |
+
"data": {
|
46 |
+
"text/plain": [
|
47 |
+
"(53766, 4)"
|
48 |
+
]
|
49 |
+
},
|
50 |
+
"execution_count": 5,
|
51 |
+
"metadata": {},
|
52 |
+
"output_type": "execute_result"
|
53 |
+
}
|
54 |
+
],
|
55 |
+
"source": [
|
56 |
+
"data.shape"
|
57 |
+
]
|
58 |
+
},
|
59 |
+
{
|
60 |
+
"cell_type": "code",
|
61 |
+
"execution_count": 6,
|
62 |
+
"metadata": {},
|
63 |
+
"outputs": [],
|
64 |
+
"source": [
|
65 |
+
"data = data[data['problem'].notna()]"
|
66 |
+
]
|
67 |
+
},
|
68 |
+
{
|
69 |
+
"cell_type": "code",
|
70 |
+
"execution_count": 7,
|
71 |
+
"metadata": {},
|
72 |
+
"outputs": [
|
73 |
+
{
|
74 |
+
"data": {
|
75 |
+
"text/html": [
|
76 |
+
"<div>\n",
|
77 |
+
"<style scoped>\n",
|
78 |
+
" .dataframe tbody tr th:only-of-type {\n",
|
79 |
+
" vertical-align: middle;\n",
|
80 |
+
" }\n",
|
81 |
+
"\n",
|
82 |
+
" .dataframe tbody tr th {\n",
|
83 |
+
" vertical-align: top;\n",
|
84 |
+
" }\n",
|
85 |
+
"\n",
|
86 |
+
" .dataframe thead th {\n",
|
87 |
+
" text-align: right;\n",
|
88 |
+
" }\n",
|
89 |
+
"</style>\n",
|
90 |
+
"<table border=\"1\" class=\"dataframe\">\n",
|
91 |
+
" <thead>\n",
|
92 |
+
" <tr style=\"text-align: right;\">\n",
|
93 |
+
" <th></th>\n",
|
94 |
+
" <th>drugName</th>\n",
|
95 |
+
" <th>condition</th>\n",
|
96 |
+
" <th>review</th>\n",
|
97 |
+
" <th>problem</th>\n",
|
98 |
+
" </tr>\n",
|
99 |
+
" </thead>\n",
|
100 |
+
" <tbody>\n",
|
101 |
+
" <tr>\n",
|
102 |
+
" <th>0</th>\n",
|
103 |
+
" <td>Mirtazapine</td>\n",
|
104 |
+
" <td>Depression</td>\n",
|
105 |
+
" <td>\"I&#039;ve tried a few antidepressants over th...</td>\n",
|
106 |
+
" <td>Depression\\n\"I&#039;ve tried a few antidepress...</td>\n",
|
107 |
+
" </tr>\n",
|
108 |
+
" <tr>\n",
|
109 |
+
" <th>1</th>\n",
|
110 |
+
" <td>Mesalamine</td>\n",
|
111 |
+
" <td>Crohn's Disease, Maintenance</td>\n",
|
112 |
+
" <td>\"My son has Crohn&#039;s disease and has done ...</td>\n",
|
113 |
+
" <td>Crohn's Disease, Maintenance\\n\"My son has Croh...</td>\n",
|
114 |
+
" </tr>\n",
|
115 |
+
" <tr>\n",
|
116 |
+
" <th>2</th>\n",
|
117 |
+
" <td>Bactrim</td>\n",
|
118 |
+
" <td>Urinary Tract Infection</td>\n",
|
119 |
+
" <td>\"Quick reduction of symptoms\"</td>\n",
|
120 |
+
" <td>Urinary Tract Infection\\n\"Quick reduction of s...</td>\n",
|
121 |
+
" </tr>\n",
|
122 |
+
" <tr>\n",
|
123 |
+
" <th>3</th>\n",
|
124 |
+
" <td>Contrave</td>\n",
|
125 |
+
" <td>Weight Loss</td>\n",
|
126 |
+
" <td>\"Contrave combines drugs that were used for al...</td>\n",
|
127 |
+
" <td>Weight Loss\\n\"Contrave combines drugs that wer...</td>\n",
|
128 |
+
" </tr>\n",
|
129 |
+
" <tr>\n",
|
130 |
+
" <th>4</th>\n",
|
131 |
+
" <td>Cyclafem 1 / 35</td>\n",
|
132 |
+
" <td>Birth Control</td>\n",
|
133 |
+
" <td>\"I have been on this birth control for one cyc...</td>\n",
|
134 |
+
" <td>Birth Control\\n\"I have been on this birth cont...</td>\n",
|
135 |
+
" </tr>\n",
|
136 |
+
" <tr>\n",
|
137 |
+
" <th>...</th>\n",
|
138 |
+
" <td>...</td>\n",
|
139 |
+
" <td>...</td>\n",
|
140 |
+
" <td>...</td>\n",
|
141 |
+
" <td>...</td>\n",
|
142 |
+
" </tr>\n",
|
143 |
+
" <tr>\n",
|
144 |
+
" <th>53761</th>\n",
|
145 |
+
" <td>Tamoxifen</td>\n",
|
146 |
+
" <td>Breast Cancer, Prevention</td>\n",
|
147 |
+
" <td>\"I have taken Tamoxifen for 5 years. Side effe...</td>\n",
|
148 |
+
" <td>Breast Cancer, Prevention\\n\"I have taken Tamox...</td>\n",
|
149 |
+
" </tr>\n",
|
150 |
+
" <tr>\n",
|
151 |
+
" <th>53762</th>\n",
|
152 |
+
" <td>Escitalopram</td>\n",
|
153 |
+
" <td>Anxiety</td>\n",
|
154 |
+
" <td>\"I&#039;ve been taking Lexapro (escitaploprgra...</td>\n",
|
155 |
+
" <td>Anxiety\\n\"I&#039;ve been taking Lexapro (escit...</td>\n",
|
156 |
+
" </tr>\n",
|
157 |
+
" <tr>\n",
|
158 |
+
" <th>53763</th>\n",
|
159 |
+
" <td>Levonorgestrel</td>\n",
|
160 |
+
" <td>Birth Control</td>\n",
|
161 |
+
" <td>\"I&#039;m married, 34 years old and I have no ...</td>\n",
|
162 |
+
" <td>Birth Control\\n\"I&#039;m married, 34 years old...</td>\n",
|
163 |
+
" </tr>\n",
|
164 |
+
" <tr>\n",
|
165 |
+
" <th>53764</th>\n",
|
166 |
+
" <td>Tapentadol</td>\n",
|
167 |
+
" <td>Pain</td>\n",
|
168 |
+
" <td>\"I was prescribed Nucynta for severe neck/shou...</td>\n",
|
169 |
+
" <td>Pain\\n\"I was prescribed Nucynta for severe nec...</td>\n",
|
170 |
+
" </tr>\n",
|
171 |
+
" <tr>\n",
|
172 |
+
" <th>53765</th>\n",
|
173 |
+
" <td>Arthrotec</td>\n",
|
174 |
+
" <td>Sciatica</td>\n",
|
175 |
+
" <td>\"It works!!!\"</td>\n",
|
176 |
+
" <td>Sciatica\\n\"It works!!!\"</td>\n",
|
177 |
+
" </tr>\n",
|
178 |
+
" </tbody>\n",
|
179 |
+
"</table>\n",
|
180 |
+
"<p>53471 rows × 4 columns</p>\n",
|
181 |
+
"</div>"
|
182 |
+
],
|
183 |
+
"text/plain": [
|
184 |
+
" drugName condition \\\n",
|
185 |
+
"0 Mirtazapine Depression \n",
|
186 |
+
"1 Mesalamine Crohn's Disease, Maintenance \n",
|
187 |
+
"2 Bactrim Urinary Tract Infection \n",
|
188 |
+
"3 Contrave Weight Loss \n",
|
189 |
+
"4 Cyclafem 1 / 35 Birth Control \n",
|
190 |
+
"... ... ... \n",
|
191 |
+
"53761 Tamoxifen Breast Cancer, Prevention \n",
|
192 |
+
"53762 Escitalopram Anxiety \n",
|
193 |
+
"53763 Levonorgestrel Birth Control \n",
|
194 |
+
"53764 Tapentadol Pain \n",
|
195 |
+
"53765 Arthrotec Sciatica \n",
|
196 |
+
"\n",
|
197 |
+
" review \\\n",
|
198 |
+
"0 \"I've tried a few antidepressants over th... \n",
|
199 |
+
"1 \"My son has Crohn's disease and has done ... \n",
|
200 |
+
"2 \"Quick reduction of symptoms\" \n",
|
201 |
+
"3 \"Contrave combines drugs that were used for al... \n",
|
202 |
+
"4 \"I have been on this birth control for one cyc... \n",
|
203 |
+
"... ... \n",
|
204 |
+
"53761 \"I have taken Tamoxifen for 5 years. Side effe... \n",
|
205 |
+
"53762 \"I've been taking Lexapro (escitaploprgra... \n",
|
206 |
+
"53763 \"I'm married, 34 years old and I have no ... \n",
|
207 |
+
"53764 \"I was prescribed Nucynta for severe neck/shou... \n",
|
208 |
+
"53765 \"It works!!!\" \n",
|
209 |
+
"\n",
|
210 |
+
" problem \n",
|
211 |
+
"0 Depression\\n\"I've tried a few antidepress... \n",
|
212 |
+
"1 Crohn's Disease, Maintenance\\n\"My son has Croh... \n",
|
213 |
+
"2 Urinary Tract Infection\\n\"Quick reduction of s... \n",
|
214 |
+
"3 Weight Loss\\n\"Contrave combines drugs that wer... \n",
|
215 |
+
"4 Birth Control\\n\"I have been on this birth cont... \n",
|
216 |
+
"... ... \n",
|
217 |
+
"53761 Breast Cancer, Prevention\\n\"I have taken Tamox... \n",
|
218 |
+
"53762 Anxiety\\n\"I've been taking Lexapro (escit... \n",
|
219 |
+
"53763 Birth Control\\n\"I'm married, 34 years old... \n",
|
220 |
+
"53764 Pain\\n\"I was prescribed Nucynta for severe nec... \n",
|
221 |
+
"53765 Sciatica\\n\"It works!!!\" \n",
|
222 |
+
"\n",
|
223 |
+
"[53471 rows x 4 columns]"
|
224 |
+
]
|
225 |
+
},
|
226 |
+
"execution_count": 7,
|
227 |
+
"metadata": {},
|
228 |
+
"output_type": "execute_result"
|
229 |
+
}
|
230 |
+
],
|
231 |
+
"source": [
|
232 |
+
"data"
|
233 |
+
]
|
234 |
+
},
|
235 |
+
{
|
236 |
+
"cell_type": "code",
|
237 |
+
"execution_count": 8,
|
238 |
+
"metadata": {},
|
239 |
+
"outputs": [
|
240 |
+
{
|
241 |
+
"data": {
|
242 |
+
"text/plain": [
|
243 |
+
"2635"
|
244 |
+
]
|
245 |
+
},
|
246 |
+
"execution_count": 8,
|
247 |
+
"metadata": {},
|
248 |
+
"output_type": "execute_result"
|
249 |
+
}
|
250 |
+
],
|
251 |
+
"source": [
|
252 |
+
"len(data['drugName'].unique())"
|
253 |
+
]
|
254 |
+
},
|
255 |
+
{
|
256 |
+
"cell_type": "code",
|
257 |
+
"execution_count": 9,
|
258 |
+
"metadata": {},
|
259 |
+
"outputs": [
|
260 |
+
{
|
261 |
+
"name": "stdout",
|
262 |
+
"output_type": "stream",
|
263 |
+
"text": [
|
264 |
+
"['Mirtazapine' 'Mesalamine' 'Bactrim' ... 'Guarana' 'Maprotiline'\n",
|
265 |
+
" 'FluMist']\n"
|
266 |
+
]
|
267 |
+
}
|
268 |
+
],
|
269 |
+
"source": [
|
270 |
+
"print(data['drugName'].unique())"
|
271 |
+
]
|
272 |
+
},
|
273 |
+
{
|
274 |
+
"cell_type": "code",
|
275 |
+
"execution_count": 9,
|
276 |
+
"metadata": {},
|
277 |
+
"outputs": [],
|
278 |
+
"source": [
|
279 |
+
"unique_drugs = data['drugName'].unique().tolist()"
|
280 |
+
]
|
281 |
+
},
|
282 |
+
{
|
283 |
+
"cell_type": "code",
|
284 |
+
"execution_count": 10,
|
285 |
+
"metadata": {},
|
286 |
+
"outputs": [],
|
287 |
+
"source": [
|
288 |
+
"with open('unique_drugs.txt', 'w') as f:\n",
|
289 |
+
" for drug in unique_drugs:\n",
|
290 |
+
" f.write(f'\"{drug}\",')"
|
291 |
+
]
|
292 |
+
},
|
293 |
+
{
|
294 |
+
"cell_type": "code",
|
295 |
+
"execution_count": 33,
|
296 |
+
"metadata": {},
|
297 |
+
"outputs": [
|
298 |
+
{
|
299 |
+
"name": "stderr",
|
300 |
+
"output_type": "stream",
|
301 |
+
"text": [
|
302 |
+
"/home/bacancy/Medical/.venv/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n",
|
303 |
+
" from .autonotebook import tqdm as notebook_tqdm\n"
|
304 |
+
]
|
305 |
+
}
|
306 |
+
],
|
307 |
+
"source": [
|
308 |
+
"from datasets import Dataset\n",
|
309 |
+
"\n",
|
310 |
+
"comments_dataset = Dataset.from_pandas(data)"
|
311 |
+
]
|
312 |
+
},
|
313 |
+
{
|
314 |
+
"cell_type": "code",
|
315 |
+
"execution_count": 34,
|
316 |
+
"metadata": {},
|
317 |
+
"outputs": [
|
318 |
+
{
|
319 |
+
"name": "stderr",
|
320 |
+
"output_type": "stream",
|
321 |
+
"text": [
|
322 |
+
"/home/bacancy/Medical/.venv/lib/python3.10/site-packages/transformers/tokenization_utils_base.py:1601: FutureWarning: `clean_up_tokenization_spaces` was not set. It will be set to `True` by default. This behavior will be depracted in transformers v4.45, and will be then set to `False` by default. For more details check this issue: https://github.com/huggingface/transformers/issues/31884\n",
|
323 |
+
" warnings.warn(\n",
|
324 |
+
"Map: 100%|██████████| 53471/53471 [2:05:35<00:00, 7.10 examples/s] \n"
|
325 |
+
]
|
326 |
+
}
|
327 |
+
],
|
328 |
+
"source": [
|
329 |
+
"from transformers import AutoTokenizer, AutoModel\n",
|
330 |
+
"import torch \n",
|
331 |
+
"device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n",
|
332 |
+
"\n",
|
333 |
+
"model_ckpt = \"sentence-transformers/multi-qa-mpnet-base-dot-v1\"\n",
|
334 |
+
"tokenizer = AutoTokenizer.from_pretrained(model_ckpt)\n",
|
335 |
+
"model = AutoModel.from_pretrained(model_ckpt) \n",
|
336 |
+
"model.to(device)\n",
|
337 |
+
"\n",
|
338 |
+
"def cls_pooling(model_output):\n",
|
339 |
+
" return model_output.last_hidden_state[:, 0]\n",
|
340 |
+
"\n",
|
341 |
+
"def get_embeddings(text_list):\n",
|
342 |
+
" encoded_input = tokenizer(\n",
|
343 |
+
" text_list, padding=True, truncation=True, return_tensors=\"pt\"\n",
|
344 |
+
" )\n",
|
345 |
+
" encoded_input = {k: v.to(device) for k, v in encoded_input.items()}\n",
|
346 |
+
" model_output = model(**encoded_input)\n",
|
347 |
+
" return cls_pooling(model_output)\n",
|
348 |
+
"\n",
|
349 |
+
"embeddings_dataset = comments_dataset.map(\n",
|
350 |
+
" lambda x: {\"embeddings\": get_embeddings(x[\"problem\"]).detach().cpu().numpy()[0]}\n",
|
351 |
+
")"
|
352 |
+
]
|
353 |
+
},
|
354 |
+
{
|
355 |
+
"cell_type": "code",
|
356 |
+
"execution_count": 36,
|
357 |
+
"metadata": {},
|
358 |
+
"outputs": [
|
359 |
+
{
|
360 |
+
"name": "stderr",
|
361 |
+
"output_type": "stream",
|
362 |
+
"text": [
|
363 |
+
"Saving the dataset (1/1 shards): 100%|██████████| 53471/53471 [00:00<00:00, 356492.37 examples/s]\n"
|
364 |
+
]
|
365 |
+
}
|
366 |
+
],
|
367 |
+
"source": [
|
368 |
+
"embeddings_dataset.save_to_disk(\"/home/bacancy/Medical/new_data\")"
|
369 |
+
]
|
370 |
+
},
|
371 |
+
{
|
372 |
+
"cell_type": "code",
|
373 |
+
"execution_count": 60,
|
374 |
+
"metadata": {},
|
375 |
+
"outputs": [],
|
376 |
+
"source": [
|
377 |
+
"df_filtered = data[data['drugName'].str.startswith('E')]"
|
378 |
+
]
|
379 |
+
},
|
380 |
+
{
|
381 |
+
"cell_type": "code",
|
382 |
+
"execution_count": 59,
|
383 |
+
"metadata": {},
|
384 |
+
"outputs": [
|
385 |
+
{
|
386 |
+
"data": {
|
387 |
+
"text/plain": [
|
388 |
+
"array(['Duloxetine', 'Depakote', 'Drospirenone / estradiol',\n",
|
389 |
+
" 'Depo-Provera', 'Desyrel', 'Desvenlafaxine',\n",
|
390 |
+
" 'Drospirenone / ethinyl estradiol', 'Doxylamine / pyridoxine',\n",
|
391 |
+
" 'Demerol', 'Dextromethorphan', 'Diazepam', 'Diphenhydramine',\n",
|
392 |
+
" 'Denosumab', 'Dulaglutide', 'Drysol', 'Divalproex sodium',\n",
|
393 |
+
" 'Doxycycline', 'Desogestrel / ethinyl estradiol', 'Duofilm',\n",
|
394 |
+
" 'Dicyclomine', 'Dexmethylphenidate', 'Diltiazem', 'Dapsone',\n",
|
395 |
+
" 'Dalfampridine', 'Dilantin', 'Dienogest / estradiol', 'Diclofenac',\n",
|
396 |
+
" 'Donnatal', 'Depakote ER', 'Donepezil', 'Dulcolax', 'Dulera',\n",
|
397 |
+
" 'Dapagliflozin', 'Duexis', 'Differin', 'Doxepin', 'Docosanol',\n",
|
398 |
+
" 'Diclegis', 'Desloratadine',\n",
|
399 |
+
" 'Drospirenone / ethinyl estradiol / levomefolate calcium', 'Duac',\n",
|
400 |
+
" 'Deplin', 'Doryx', 'Dilaudid', 'Dimenhydrinate', 'Delsym',\n",
|
401 |
+
" 'Denavir', 'D.H.E. 45', 'Disulfiram', 'Droperidol', 'Dasatinib',\n",
|
402 |
+
" 'Dextrostat', 'Dymista', 'Dextroamphetamine', 'DDAVP Rhinal Tube',\n",
|
403 |
+
" 'Dabigatran', 'Dasabuvir / ombitasvir / paritaprevir / ritonavir',\n",
|
404 |
+
" 'Dextromethorphan / guaifenesin', 'Diflucan', 'Debrox',\n",
|
405 |
+
" 'Diphenhydramine / naproxen', 'Daklinza', 'Daliresp',\n",
|
406 |
+
" 'Dihydroergotamine', 'Dinoprostone', 'Dermal filler', 'Doxylamine',\n",
|
407 |
+
" 'Daytrana', 'Diprivan', 'Dexlansoprazole', 'Dovonex', 'Doral',\n",
|
408 |
+
" 'Desquam-X Wash', 'Dexilant', 'Dofetilide', 'Diovan HCT', 'Detrol',\n",
|
409 |
+
" \"Dimetapp Children's Cold & Cough\", 'Delatestryl', 'Desipramine',\n",
|
410 |
+
" 'Daclatasvir', 'Depo-Testosterone', 'Dulcolax Laxative',\n",
|
411 |
+
" 'Dexamethasone', 'Dimethyl fumarate', 'Dronabinol', 'Duragesic',\n",
|
412 |
+
" 'Dexedrine', 'Dupixent', 'Dramamine',\n",
|
413 |
+
" 'Dexbrompheniramine / pseudoephedrine', 'Diovan', 'Dyrenium',\n",
|
414 |
+
" 'Dificid', 'Delsym 12 Hour Cough Relief', 'Desmopressin',\n",
|
415 |
+
" 'Detrol LA', 'DDAVP', 'Diethylpropion', 'Dolophine', 'Demadex',\n",
|
416 |
+
" 'Dextromethorphan / quinidine', 'Desogen', 'Dexchlorpheniramine',\n",
|
417 |
+
" 'Durezol', 'Dupilumab', 'Digoxin', 'Darbepoetin alfa', 'Ditropan',\n",
|
418 |
+
" 'Desonide', 'Diclofenac / misoprostol', 'Doxazosin',\n",
|
419 |
+
" 'Diamox Sequels', 'Diazepam Intensol', 'Diamox', 'Di-Gel',\n",
|
420 |
+
" 'Dexamethasone / neomycin / polymyxin b', 'Docusate / senna',\n",
|
421 |
+
" 'Darvon', 'Desoxyn', 'Desoximetasone',\n",
|
422 |
+
" 'Dextromethorphan / guaifenesin / phenylephrine', 'Dobutamine',\n",
|
423 |
+
" 'Deblitane', 'Dronedarone', 'Derma-Smoothe / FS (Scalp)',\n",
|
424 |
+
" 'Dolutegravir', 'Deconamine', 'Doxy 100', 'Dexamethasone Intensol',\n",
|
425 |
+
" 'Drixoral Cold and Allergy', 'Duavee', 'Dyanavel XR',\n",
|
426 |
+
" 'DynaCirc CR', 'Darifenacin', 'Dalmane', 'Disalcid', 'Dutasteride',\n",
|
427 |
+
" 'Doans Pills Extra Strength', 'Dutasteride / tamsulosin',\n",
|
428 |
+
" 'Diflorasone', 'Difluprednate',\n",
|
429 |
+
" 'Dextromethorphan / guaifenesin / pseudoephedrine', 'Dallergy',\n",
|
430 |
+
" 'Doripenem', 'DesOwen', 'Depo-Provera Contraceptive',\n",
|
431 |
+
" 'Drixoral Decongestant Non-Drowsy', 'Degarelix', 'Doxidan Tablet',\n",
|
432 |
+
" 'Dolobid', 'Dasetta 7 / 7 / 7', 'Didrex', 'Doribax',\n",
|
433 |
+
" 'Dextromethorphan / promethazine', 'Disopyramide',\n",
|
434 |
+
" 'Dorzolamide / timolol', 'Darunavir', 'Danocrine', 'Decadron',\n",
|
435 |
+
" 'Daypro', 'Dyazide', 'Deltasone', 'Depo-Medrol',\n",
|
436 |
+
" 'Dapagliflozin / metformin', 'Dilaudid-HP', 'Doxorubicin',\n",
|
437 |
+
" 'Deoxycholic acid',\n",
|
438 |
+
" 'Dextromethorphan / phenylephrine / pyrilamine',\n",
|
439 |
+
" 'Diphenhydramine / ibuprofen', 'Divigel', 'Dermatop'], dtype=object)"
|
440 |
+
]
|
441 |
+
},
|
442 |
+
"execution_count": 59,
|
443 |
+
"metadata": {},
|
444 |
+
"output_type": "execute_result"
|
445 |
+
}
|
446 |
+
],
|
447 |
+
"source": [
|
448 |
+
"df_filtered['drugName'].unique()"
|
449 |
+
]
|
450 |
+
},
|
451 |
+
{
|
452 |
+
"cell_type": "code",
|
453 |
+
"execution_count": 42,
|
454 |
+
"metadata": {},
|
455 |
+
"outputs": [],
|
456 |
+
"source": [
|
457 |
+
"arr = data['c'].unique()"
|
458 |
+
]
|
459 |
+
},
|
460 |
+
{
|
461 |
+
"cell_type": "code",
|
462 |
+
"execution_count": 49,
|
463 |
+
"metadata": {},
|
464 |
+
"outputs": [
|
465 |
+
{
|
466 |
+
"data": {
|
467 |
+
"text/plain": [
|
468 |
+
"['Mirtazapine',\n",
|
469 |
+
" 'Mesalamine',\n",
|
470 |
+
" 'Bactrim',\n",
|
471 |
+
" 'Contrave',\n",
|
472 |
+
" 'Cyclafem 1 / 35',\n",
|
473 |
+
" 'Zyclara',\n",
|
474 |
+
" 'Copper',\n",
|
475 |
+
" 'Amitriptyline',\n",
|
476 |
+
" 'Methadone',\n",
|
477 |
+
" 'Levora',\n",
|
478 |
+
" 'Paroxetine',\n",
|
479 |
+
" 'Miconazole',\n",
|
480 |
+
" 'Belviq',\n",
|
481 |
+
" 'Seroquel',\n",
|
482 |
+
" 'Ambien',\n",
|
483 |
+
" 'Nuvigil',\n",
|
484 |
+
" 'Chantix',\n",
|
485 |
+
" 'Microgestin Fe 1 / 20',\n",
|
486 |
+
" 'Klonopin',\n",
|
487 |
+
" 'Ciprofloxacin',\n",
|
488 |
+
" 'Trazodone',\n",
|
489 |
+
" 'EnteraGam',\n",
|
490 |
+
" 'Aripiprazole',\n",
|
491 |
+
" 'Cyclosporine',\n",
|
492 |
+
" 'Oxybutynin',\n",
|
493 |
+
" 'Lurasidone',\n",
|
494 |
+
" 'Clonazepam',\n",
|
495 |
+
" 'Ciclopirox',\n",
|
496 |
+
" 'Sodium oxybate',\n",
|
497 |
+
" 'Lamotrigine',\n",
|
498 |
+
" 'Blisovi Fe 1 / 20',\n",
|
499 |
+
" 'Ivermectin',\n",
|
500 |
+
" 'Suprep Bowel Prep Kit',\n",
|
501 |
+
" 'Movantik',\n",
|
502 |
+
" 'Actos',\n",
|
503 |
+
" 'Duloxetine',\n",
|
504 |
+
" 'NuvaRing',\n",
|
505 |
+
" 'Escitalopram',\n",
|
506 |
+
" 'Tesamorelin',\n",
|
507 |
+
" 'Campral',\n",
|
508 |
+
" 'Gabapentin',\n",
|
509 |
+
" 'Levonorgestrel',\n",
|
510 |
+
" 'Aubra',\n",
|
511 |
+
" 'Plan B One-Step',\n",
|
512 |
+
" 'Ethinyl estradiol / etonogestrel',\n",
|
513 |
+
" 'Microgestin Fe 1.5 / 30',\n",
|
514 |
+
" 'Wellbutrin',\n",
|
515 |
+
" 'Benzoyl peroxide / clindamycin',\n",
|
516 |
+
" 'Etonogestrel',\n",
|
517 |
+
" 'Nitrofurantoin',\n",
|
518 |
+
" 'Ortho Tri-Cyclen Lo',\n",
|
519 |
+
" 'Tamsulosin',\n",
|
520 |
+
" 'Tofacitinib',\n",
|
521 |
+
" 'Cryselle',\n",
|
522 |
+
" 'Amphetamine / dextroamphetamine',\n",
|
523 |
+
" 'Clindamycin',\n",
|
524 |
+
" 'Pramipexole',\n",
|
525 |
+
" 'Skyla',\n",
|
526 |
+
" 'Lastacaft',\n",
|
527 |
+
" 'Effexor XR',\n",
|
528 |
+
" 'Nifedipine',\n",
|
529 |
+
" 'Afrezza',\n",
|
530 |
+
" 'Zoloft',\n",
|
531 |
+
" 'Ziprasidone',\n",
|
532 |
+
" 'Ethinyl estradiol / norethindrone',\n",
|
533 |
+
" 'Sertraline',\n",
|
534 |
+
" 'Aluminum chloride hexahydrate',\n",
|
535 |
+
" 'ParaGard',\n",
|
536 |
+
" 'Pregabalin',\n",
|
537 |
+
" 'Ethinyl estradiol / levonorgestrel',\n",
|
538 |
+
" 'Ultram',\n",
|
539 |
+
" 'Phentermine',\n",
|
540 |
+
" 'Venlafaxine',\n",
|
541 |
+
" 'BuSpar',\n",
|
542 |
+
" 'Acetaminophen / hydrocodone',\n",
|
543 |
+
" 'Aviane',\n",
|
544 |
+
" 'Inderal',\n",
|
545 |
+
" 'Promethazine',\n",
|
546 |
+
" 'Tioconazole',\n",
|
547 |
+
" 'Orthovisc',\n",
|
548 |
+
" 'Implanon',\n",
|
549 |
+
" 'Marezine',\n",
|
550 |
+
" 'Minoxidil',\n",
|
551 |
+
" 'Humira',\n",
|
552 |
+
" 'Insulin inhalation, rapid acting',\n",
|
553 |
+
" 'Phenazopyridine',\n",
|
554 |
+
" 'Clonidine',\n",
|
555 |
+
" 'Ethinyl estradiol / norgestimate',\n",
|
556 |
+
" 'Nicoderm CQ',\n",
|
557 |
+
" 'Celecoxib',\n",
|
558 |
+
" 'Fluoxetine',\n",
|
559 |
+
" 'Topamax',\n",
|
560 |
+
" 'Depakote',\n",
|
561 |
+
" 'Riboflavin',\n",
|
562 |
+
" 'Lo Loestrin Fe',\n",
|
563 |
+
" 'Drospirenone / estradiol',\n",
|
564 |
+
" 'Bupropion',\n",
|
565 |
+
" 'Bacitracin / neomycin / polymyxin b',\n",
|
566 |
+
" 'Yaz',\n",
|
567 |
+
" 'Jolessa',\n",
|
568 |
+
" 'Guaifenesin / pseudoephedrine',\n",
|
569 |
+
" 'Oxycodone',\n",
|
570 |
+
" 'Nexplanon',\n",
|
571 |
+
" 'Brisdelle',\n",
|
572 |
+
" 'Beyaz',\n",
|
573 |
+
" 'Yasmin',\n",
|
574 |
+
" 'Nucynta ER',\n",
|
575 |
+
" 'Prozac',\n",
|
576 |
+
" 'Kariva',\n",
|
577 |
+
" 'Liraglutide',\n",
|
578 |
+
" 'Sutent',\n",
|
579 |
+
" 'Tramadol',\n",
|
580 |
+
" 'Tylenol with Codeine #3',\n",
|
581 |
+
" 'Magnesium citrate',\n",
|
582 |
+
" 'Depo-Provera',\n",
|
583 |
+
" 'Safyral',\n",
|
584 |
+
" 'Desyrel',\n",
|
585 |
+
" 'Glyburide',\n",
|
586 |
+
" 'Aldesleukin',\n",
|
587 |
+
" 'Desvenlafaxine',\n",
|
588 |
+
" 'Drospirenone / ethinyl estradiol',\n",
|
589 |
+
" 'Phentermine / topiramate',\n",
|
590 |
+
" 'Pristiq',\n",
|
591 |
+
" 'Acamprosate',\n",
|
592 |
+
" 'Spironolactone',\n",
|
593 |
+
" 'Doxylamine / pyridoxine',\n",
|
594 |
+
" 'Demerol',\n",
|
595 |
+
" 'Vyvanse',\n",
|
596 |
+
" 'Sovaldi',\n",
|
597 |
+
" 'Motrin IB',\n",
|
598 |
+
" 'Valacyclovir',\n",
|
599 |
+
" 'Buprenorphine / naloxone',\n",
|
600 |
+
" 'Metoprolol',\n",
|
601 |
+
" 'Montelukast',\n",
|
602 |
+
" 'Dextromethorphan',\n",
|
603 |
+
" 'Levitra',\n",
|
604 |
+
" 'Restoril',\n",
|
605 |
+
" 'Azathioprine',\n",
|
606 |
+
" 'Adapalene / benzoyl peroxide',\n",
|
607 |
+
" 'Linzess',\n",
|
608 |
+
" 'Levetiracetam',\n",
|
609 |
+
" 'Ziana',\n",
|
610 |
+
" 'Suboxone',\n",
|
611 |
+
" 'Tinidazole',\n",
|
612 |
+
" 'Diazepam',\n",
|
613 |
+
" 'Quetiapine',\n",
|
614 |
+
" 'Acetaminophen / butalbital / caffeine',\n",
|
615 |
+
" 'Estradiol',\n",
|
616 |
+
" 'Propofol',\n",
|
617 |
+
" 'Propranolol',\n",
|
618 |
+
" 'Levofloxacin',\n",
|
619 |
+
" 'Vilazodone',\n",
|
620 |
+
" 'Accutane',\n",
|
621 |
+
" 'Nalbuphine',\n",
|
622 |
+
" 'Lexapro',\n",
|
623 |
+
" 'MiraLax',\n",
|
624 |
+
" 'Phenobarbital',\n",
|
625 |
+
" 'Tri-Sprintec',\n",
|
626 |
+
" 'Metronidazole',\n",
|
627 |
+
" 'Imiquimod',\n",
|
628 |
+
" 'Caffeine',\n",
|
629 |
+
" 'Lisinopril',\n",
|
630 |
+
" 'Benzonatate',\n",
|
631 |
+
" 'Ayr Saline Nasal',\n",
|
632 |
+
" 'Clarithromycin',\n",
|
633 |
+
" 'Enbrel',\n",
|
634 |
+
" 'Polyethylene glycol 3350 with electrolytes',\n",
|
635 |
+
" 'Restasis',\n",
|
636 |
+
" 'Symbyax',\n",
|
637 |
+
" 'Tretinoin',\n",
|
638 |
+
" 'Gleevec',\n",
|
639 |
+
" 'Ropinirole',\n",
|
640 |
+
" 'Clomiphene',\n",
|
641 |
+
" 'Clotrimazole',\n",
|
642 |
+
" 'Topiramate',\n",
|
643 |
+
" 'Fluorouracil',\n",
|
644 |
+
" 'Genvoya',\n",
|
645 |
+
" 'Tessalon Perles',\n",
|
646 |
+
" 'Asenapine',\n",
|
647 |
+
" 'Adipex-P',\n",
|
648 |
+
" 'Prenatal Plus',\n",
|
649 |
+
" 'Keflex',\n",
|
650 |
+
" 'Vitamin D2',\n",
|
651 |
+
" 'Flexeril',\n",
|
652 |
+
" 'Viibryd',\n",
|
653 |
+
" 'Lysteda',\n",
|
654 |
+
" 'Omnicef',\n",
|
655 |
+
" 'Augmentin',\n",
|
656 |
+
" 'Pentasa',\n",
|
657 |
+
" 'Zofran',\n",
|
658 |
+
" 'Kapidex',\n",
|
659 |
+
" 'Serzone',\n",
|
660 |
+
" 'Hyoscyamine / methenamine / methylene blue / phenyl salicylate',\n",
|
661 |
+
" 'Diphenhydramine',\n",
|
662 |
+
" 'Minocycline',\n",
|
663 |
+
" 'Monistat 3-Day Combination Pack',\n",
|
664 |
+
" 'Pitocin',\n",
|
665 |
+
" 'Pyridostigmine',\n",
|
666 |
+
" 'Naprosyn',\n",
|
667 |
+
" 'Elocon',\n",
|
668 |
+
" 'Pazopanib',\n",
|
669 |
+
" 'Denosumab',\n",
|
670 |
+
" 'Bisacodyl',\n",
|
671 |
+
" 'Paxil',\n",
|
672 |
+
" 'Methotrexate',\n",
|
673 |
+
" 'Sprintec',\n",
|
674 |
+
" 'Buprenex',\n",
|
675 |
+
" 'Apri',\n",
|
676 |
+
" 'Benzoyl peroxide / erythromycin',\n",
|
677 |
+
" 'Qsymia',\n",
|
678 |
+
" 'Lyrica',\n",
|
679 |
+
" 'Trintellix',\n",
|
680 |
+
" 'Oseltamivir',\n",
|
681 |
+
" 'Seasonique',\n",
|
682 |
+
" 'Niravam',\n",
|
683 |
+
" 'Celexa',\n",
|
684 |
+
" 'Codeine / guaifenesin',\n",
|
685 |
+
" 'Cefuroxime',\n",
|
686 |
+
" 'Ortho Evra',\n",
|
687 |
+
" 'Xanax',\n",
|
688 |
+
" 'Ondansetron',\n",
|
689 |
+
" 'Dulaglutide',\n",
|
690 |
+
" 'Supartz',\n",
|
691 |
+
" 'Naproxen',\n",
|
692 |
+
" 'Alesse',\n",
|
693 |
+
" 'Orlistat',\n",
|
694 |
+
" 'Methylprednisolone',\n",
|
695 |
+
" 'Cymbalta',\n",
|
696 |
+
" 'Aspirin / carisoprodol',\n",
|
697 |
+
" 'Canagliflozin',\n",
|
698 |
+
" 'Nasonex',\n",
|
699 |
+
" 'Junel Fe 1 / 20',\n",
|
700 |
+
" 'Kombiglyze XR',\n",
|
701 |
+
" 'Pegfilgrastim',\n",
|
702 |
+
" 'Azelaic acid',\n",
|
703 |
+
" 'Mirena',\n",
|
704 |
+
" 'Suvorexant',\n",
|
705 |
+
" 'Lysine',\n",
|
706 |
+
" 'Nexium',\n",
|
707 |
+
" 'Citalopram',\n",
|
708 |
+
" 'Drysol',\n",
|
709 |
+
" 'Corticotropin',\n",
|
710 |
+
" 'Meclizine',\n",
|
711 |
+
" 'Cefdinir',\n",
|
712 |
+
" 'Methocarbamol',\n",
|
713 |
+
" 'Azithromycin',\n",
|
714 |
+
" 'Sinemet',\n",
|
715 |
+
" 'Esomeprazole',\n",
|
716 |
+
" 'Prednisone',\n",
|
717 |
+
" 'Fentanyl',\n",
|
718 |
+
" 'Pseudoephedrine',\n",
|
719 |
+
" 'Risperidone',\n",
|
720 |
+
" 'Alpha 1-proteinase inhibitor',\n",
|
721 |
+
" 'Junel Fe 1.5 / 30',\n",
|
722 |
+
" 'Divalproex sodium',\n",
|
723 |
+
" 'Pravastatin',\n",
|
724 |
+
" 'Vardenafil',\n",
|
725 |
+
" 'Abilify',\n",
|
726 |
+
" 'Amlodipine',\n",
|
727 |
+
" 'Carvedilol',\n",
|
728 |
+
" 'Xyzal',\n",
|
729 |
+
" 'Budeprion SR',\n",
|
730 |
+
" 'Rosuvastatin',\n",
|
731 |
+
" 'Victoza',\n",
|
732 |
+
" 'Percocet',\n",
|
733 |
+
" 'Trulicity',\n",
|
734 |
+
" 'Tranexamic acid',\n",
|
735 |
+
" 'Paxil CR',\n",
|
736 |
+
" 'OxyContin',\n",
|
737 |
+
" 'Chlordiazepoxide',\n",
|
738 |
+
" 'Olanzapine',\n",
|
739 |
+
" 'Doxycycline',\n",
|
740 |
+
" 'CellCept',\n",
|
741 |
+
" 'Imodium A-D',\n",
|
742 |
+
" 'Cobicistat / elvitegravir / emtricitabine / tenofovir alafenamide',\n",
|
743 |
+
" 'Chateal',\n",
|
744 |
+
" 'Rizatriptan',\n",
|
745 |
+
" 'Strattera',\n",
|
746 |
+
" 'Monistat 7-Day Combination Pack',\n",
|
747 |
+
" 'Cyclobenzaprine',\n",
|
748 |
+
" 'Ethinyl estradiol / norelgestromin',\n",
|
749 |
+
" 'Uptravi',\n",
|
750 |
+
" 'Eletriptan',\n",
|
751 |
+
" 'Isotretinoin',\n",
|
752 |
+
" 'Rosula',\n",
|
753 |
+
" 'Methyldopa',\n",
|
754 |
+
" 'Fetzima',\n",
|
755 |
+
" 'Linaclotide',\n",
|
756 |
+
" 'Arimidex',\n",
|
757 |
+
" 'Eszopiclone',\n",
|
758 |
+
" 'Mononessa',\n",
|
759 |
+
" 'Norethindrone',\n",
|
760 |
+
" 'Medroxyprogesterone',\n",
|
761 |
+
" 'Synvisc-One',\n",
|
762 |
+
" 'Xulane',\n",
|
763 |
+
" 'Remeron',\n",
|
764 |
+
" 'Pamelor',\n",
|
765 |
+
" 'Orphenadrine',\n",
|
766 |
+
" 'Etanercept',\n",
|
767 |
+
" 'Bupropion / naltrexone',\n",
|
768 |
+
" 'Milnacipran',\n",
|
769 |
+
" 'Acetaminophen / codeine',\n",
|
770 |
+
" 'Penicillin v potassium',\n",
|
771 |
+
" 'Varenicline',\n",
|
772 |
+
" 'Advair Diskus',\n",
|
773 |
+
" 'Cialis',\n",
|
774 |
+
" 'Tadalafil',\n",
|
775 |
+
" 'Alprazolam',\n",
|
776 |
+
" 'Desogestrel / ethinyl estradiol',\n",
|
777 |
+
" 'Metformin',\n",
|
778 |
+
" 'Duofilm',\n",
|
779 |
+
" 'Sprycel',\n",
|
780 |
+
" 'ella',\n",
|
781 |
+
" 'Sronyx',\n",
|
782 |
+
" 'Alcaftadine',\n",
|
783 |
+
" 'Sulfamethoxazole / trimethoprim',\n",
|
784 |
+
" 'Levothyroxine',\n",
|
785 |
+
" 'Kineret',\n",
|
786 |
+
" 'Nature-Throid',\n",
|
787 |
+
" 'Cholestyramine',\n",
|
788 |
+
" 'Flector Patch',\n",
|
789 |
+
" 'Prochlorperazine',\n",
|
790 |
+
" 'Zovia',\n",
|
791 |
+
" 'Toprol-XL',\n",
|
792 |
+
" 'Perampanel',\n",
|
793 |
+
" 'Cozaar',\n",
|
794 |
+
" 'Acetaminophen / dexbrompheniramine / pseudoephedrine',\n",
|
795 |
+
" 'AndroGel',\n",
|
796 |
+
" 'Avinza',\n",
|
797 |
+
" 'Ativan',\n",
|
798 |
+
" 'Atomoxetine',\n",
|
799 |
+
" 'Lorcaserin',\n",
|
800 |
+
" 'Oxymorphone',\n",
|
801 |
+
" 'Saphris',\n",
|
802 |
+
" 'Mirabegron',\n",
|
803 |
+
" 'Pramoxine',\n",
|
804 |
+
" 'Alphagan P',\n",
|
805 |
+
" \"Phillips' Milk of Magnesia\",\n",
|
806 |
+
" 'Eluxadoline',\n",
|
807 |
+
" 'Terbinafine',\n",
|
808 |
+
" 'Indomethacin',\n",
|
809 |
+
" 'Latuda',\n",
|
810 |
+
" 'Plan B',\n",
|
811 |
+
" 'Apremilast',\n",
|
812 |
+
" 'Norco',\n",
|
813 |
+
" 'Savella',\n",
|
814 |
+
" 'Vivitrol',\n",
|
815 |
+
" 'Ortho Cyclen',\n",
|
816 |
+
" 'Advair HFA',\n",
|
817 |
+
" 'Anastrozole',\n",
|
818 |
+
" 'Xarelto',\n",
|
819 |
+
" 'Metformin / sitagliptin',\n",
|
820 |
+
" 'Belsomra',\n",
|
821 |
+
" 'TriNessa',\n",
|
822 |
+
" 'Prazosin',\n",
|
823 |
+
" 'Dicyclomine',\n",
|
824 |
+
" 'Sodium hyaluronate',\n",
|
825 |
+
" 'Toradol',\n",
|
826 |
+
" 'Epiduo',\n",
|
827 |
+
" 'Kyleena',\n",
|
828 |
+
" 'Levsin SL',\n",
|
829 |
+
" 'Human papillomavirus vaccine',\n",
|
830 |
+
" 'Lortab',\n",
|
831 |
+
" 'Dexmethylphenidate',\n",
|
832 |
+
" 'Catapres',\n",
|
833 |
+
" 'Harvoni',\n",
|
834 |
+
" 'Lansoprazole',\n",
|
835 |
+
" 'Carbidopa / levodopa',\n",
|
836 |
+
" 'Hydrocodone',\n",
|
837 |
+
" 'Morphine',\n",
|
838 |
+
" 'Relistor',\n",
|
839 |
+
" 'Bevacizumab',\n",
|
840 |
+
" 'Barium sulfate',\n",
|
841 |
+
" 'Azor',\n",
|
842 |
+
" 'Azelastine / fluticasone',\n",
|
843 |
+
" 'Zoster vaccine live',\n",
|
844 |
+
" 'Diltiazem',\n",
|
845 |
+
" 'Tri-Previfem',\n",
|
846 |
+
" 'Dapsone',\n",
|
847 |
+
" 'Bismuth subsalicylate',\n",
|
848 |
+
" 'Wellbutrin XL',\n",
|
849 |
+
" 'Carisoprodol',\n",
|
850 |
+
" 'Olopatadine',\n",
|
851 |
+
" 'Citric acid / magnesium oxide / sodium picosulfate',\n",
|
852 |
+
" 'Relpax',\n",
|
853 |
+
" 'Dalfampridine',\n",
|
854 |
+
" 'Dilantin',\n",
|
855 |
+
" 'Leuprolide',\n",
|
856 |
+
" 'Cetirizine',\n",
|
857 |
+
" 'Macrobid',\n",
|
858 |
+
" 'Methylphenidate',\n",
|
859 |
+
" 'Nitroglycerin',\n",
|
860 |
+
" 'Ritalin',\n",
|
861 |
+
" 'Exubera',\n",
|
862 |
+
" 'Hydroxychloroquine',\n",
|
863 |
+
" 'Loestrin 24 Fe',\n",
|
864 |
+
" 'Enskyce',\n",
|
865 |
+
" 'Stalevo',\n",
|
866 |
+
" 'Amerge',\n",
|
867 |
+
" 'Lorazepam',\n",
|
868 |
+
" 'Lubiprostone',\n",
|
869 |
+
" 'Simcor',\n",
|
870 |
+
" 'Avonex Pen',\n",
|
871 |
+
" 'Methadose',\n",
|
872 |
+
" 'Acetaminophen / oxycodone',\n",
|
873 |
+
" 'Abacavir / dolutegravir / lamivudine',\n",
|
874 |
+
" 'Sumatriptan',\n",
|
875 |
+
" 'Cambia',\n",
|
876 |
+
" 'Tizanidine',\n",
|
877 |
+
" 'Adderall',\n",
|
878 |
+
" 'Exalgo',\n",
|
879 |
+
" 'Ketorolac',\n",
|
880 |
+
" 'Tegretol',\n",
|
881 |
+
" 'VESIcare',\n",
|
882 |
+
" 'Plavix',\n",
|
883 |
+
" 'Vortioxetine',\n",
|
884 |
+
" 'Atorvastatin',\n",
|
885 |
+
" 'Dienogest / estradiol',\n",
|
886 |
+
" 'Roflumilast',\n",
|
887 |
+
" 'Minastrin 24 Fe',\n",
|
888 |
+
" 'Diclofenac',\n",
|
889 |
+
" 'Opana',\n",
|
890 |
+
" 'Donnatal',\n",
|
891 |
+
" 'Depakote ER',\n",
|
892 |
+
" 'Donepezil',\n",
|
893 |
+
" 'Sofosbuvir',\n",
|
894 |
+
" 'Monistat 7',\n",
|
895 |
+
" 'Zolpidem',\n",
|
896 |
+
" 'Horizant',\n",
|
897 |
+
" 'Brovana',\n",
|
898 |
+
" 'Dulcolax',\n",
|
899 |
+
" 'Tylenol PM',\n",
|
900 |
+
" 'Saxenda',\n",
|
901 |
+
" 'Sulfasalazine',\n",
|
902 |
+
" 'Nicotine',\n",
|
903 |
+
" 'Reglan',\n",
|
904 |
+
" 'Seroquel XR',\n",
|
905 |
+
" 'Dulera',\n",
|
906 |
+
" 'Mibelas 24 Fe',\n",
|
907 |
+
" 'Naltrexone',\n",
|
908 |
+
" 'Portia',\n",
|
909 |
+
" 'Temazepam',\n",
|
910 |
+
" 'Clindamycin / tretinoin',\n",
|
911 |
+
" 'Meperidine',\n",
|
912 |
+
" 'Hydroxyzine',\n",
|
913 |
+
" 'Ethinyl estradiol / norgestrel',\n",
|
914 |
+
" 'Dapagliflozin',\n",
|
915 |
+
" 'Myrbetriq',\n",
|
916 |
+
" 'Hysingla ER',\n",
|
917 |
+
" 'Propafenone',\n",
|
918 |
+
" 'Lunesta',\n",
|
919 |
+
" 'Liletta',\n",
|
920 |
+
" 'Trimethoprim',\n",
|
921 |
+
" 'Ortho Micronor',\n",
|
922 |
+
" 'Prevacid',\n",
|
923 |
+
" 'OnabotulinumtoxinA',\n",
|
924 |
+
" 'Aptensio XR',\n",
|
925 |
+
" 'Omeprazole',\n",
|
926 |
+
" 'Finasteride',\n",
|
927 |
+
" 'Rapaflo',\n",
|
928 |
+
" 'Duexis',\n",
|
929 |
+
" 'Tamiflu',\n",
|
930 |
+
" 'Rozerem',\n",
|
931 |
+
" 'Synthroid',\n",
|
932 |
+
" 'Differin',\n",
|
933 |
+
" 'Doxepin',\n",
|
934 |
+
" 'Acetaminophen / dichloralphenazone / isometheptene mucate',\n",
|
935 |
+
" 'Crestor',\n",
|
936 |
+
" 'Narcan Injection',\n",
|
937 |
+
" 'Sildenafil',\n",
|
938 |
+
" 'Lipitor',\n",
|
939 |
+
" 'Macrodantin',\n",
|
940 |
+
" 'Intuniv',\n",
|
941 |
+
" 'Pantoprazole',\n",
|
942 |
+
" 'Keppra',\n",
|
943 |
+
" 'Keppra XR',\n",
|
944 |
+
" 'Acyclovir',\n",
|
945 |
+
" 'Ledipasvir / sofosbuvir',\n",
|
946 |
+
" 'MetroCream',\n",
|
947 |
+
" 'Copaxone',\n",
|
948 |
+
" 'Magnesium sulfate / potassium sulfate / sodium sulfate',\n",
|
949 |
+
" 'Armodafinil',\n",
|
950 |
+
" 'Fluconazole',\n",
|
951 |
+
" 'Tylenol',\n",
|
952 |
+
" 'Larin Fe 1.5 / 30',\n",
|
953 |
+
" 'Xiidra',\n",
|
954 |
+
" 'Levaquin',\n",
|
955 |
+
" 'Tacrolimus',\n",
|
956 |
+
" 'Luvox',\n",
|
957 |
+
" 'Lotrel',\n",
|
958 |
+
" 'Nortriptyline',\n",
|
959 |
+
" 'Adderall XR',\n",
|
960 |
+
" 'Viberzi',\n",
|
961 |
+
" 'Evolocumab',\n",
|
962 |
+
" 'Triumeq',\n",
|
963 |
+
" 'Gabapentin enacarbil',\n",
|
964 |
+
" 'Glucophage',\n",
|
965 |
+
" 'Soma',\n",
|
966 |
+
" 'Antipyrine / benzocaine',\n",
|
967 |
+
" 'Liothyronine',\n",
|
968 |
+
" 'Docosanol',\n",
|
969 |
+
" 'Q-Tapp DM',\n",
|
970 |
+
" 'Valium',\n",
|
971 |
+
" 'Effexor',\n",
|
972 |
+
" 'Efavirenz',\n",
|
973 |
+
" 'Chlorpheniramine / hydrocodone / pseudoephedrine',\n",
|
974 |
+
" 'Lutera',\n",
|
975 |
+
" 'Zoladex',\n",
|
976 |
+
" 'Keytruda',\n",
|
977 |
+
" 'Roxicodone',\n",
|
978 |
+
" 'Phenergan',\n",
|
979 |
+
" 'Buspirone',\n",
|
980 |
+
" 'Empagliflozin / linagliptin',\n",
|
981 |
+
" 'Singulair',\n",
|
982 |
+
" 'Viagra',\n",
|
983 |
+
" 'Rituxan',\n",
|
984 |
+
" 'Jublia',\n",
|
985 |
+
" 'Fluticasone / vilanterol',\n",
|
986 |
+
" 'Fentanyl Transdermal System',\n",
|
987 |
+
" 'Diclegis',\n",
|
988 |
+
" 'Hydromet',\n",
|
989 |
+
" 'Zipsor',\n",
|
990 |
+
" 'Milk of Magnesia',\n",
|
991 |
+
" 'Melatonin',\n",
|
992 |
+
" 'MoviPrep',\n",
|
993 |
+
" 'Aczone',\n",
|
994 |
+
" 'Lactulose',\n",
|
995 |
+
" 'Pioglitazone',\n",
|
996 |
+
" 'Desloratadine',\n",
|
997 |
+
" 'Entyvio',\n",
|
998 |
+
" 'Gefitinib',\n",
|
999 |
+
" 'Meloxicam',\n",
|
1000 |
+
" 'Bronkaid',\n",
|
1001 |
+
" 'Niacin',\n",
|
1002 |
+
" 'Paliperidone',\n",
|
1003 |
+
" 'Drospirenone / ethinyl estradiol / levomefolate calcium',\n",
|
1004 |
+
" 'Scopolamine',\n",
|
1005 |
+
" 'Sterapred',\n",
|
1006 |
+
" 'Amoxicillin / clavulanate',\n",
|
1007 |
+
" 'Pentosan polysulfate sodium',\n",
|
1008 |
+
" 'Hydromorphone',\n",
|
1009 |
+
" 'Flurazepam',\n",
|
1010 |
+
" 'Zutripro',\n",
|
1011 |
+
" 'Fluticasone',\n",
|
1012 |
+
" 'Vicodin',\n",
|
1013 |
+
" 'Mirapex',\n",
|
1014 |
+
" 'Mometasone',\n",
|
1015 |
+
" 'Fioricet',\n",
|
1016 |
+
" 'Metoclopramide',\n",
|
1017 |
+
" 'Milk thistle',\n",
|
1018 |
+
" 'Lidocaine',\n",
|
1019 |
+
" 'Metaxalone',\n",
|
1020 |
+
" 'Glatiramer',\n",
|
1021 |
+
" 'Tecfidera',\n",
|
1022 |
+
" 'Benzocaine',\n",
|
1023 |
+
" 'Ustekinumab',\n",
|
1024 |
+
" 'Mucinex',\n",
|
1025 |
+
" 'Adalimumab',\n",
|
1026 |
+
" 'Tiotropium',\n",
|
1027 |
+
" 'Vascepa',\n",
|
1028 |
+
" 'Lisdexamfetamine',\n",
|
1029 |
+
" 'Naloxegol',\n",
|
1030 |
+
" 'Ixekizumab',\n",
|
1031 |
+
" 'Mirvaso',\n",
|
1032 |
+
" 'Estarylla',\n",
|
1033 |
+
" 'Ortho Tri-Cyclen',\n",
|
1034 |
+
" 'Ramipril',\n",
|
1035 |
+
" 'Aranesp',\n",
|
1036 |
+
" 'Zioptan',\n",
|
1037 |
+
" 'Zohydro ER',\n",
|
1038 |
+
" 'Rifaximin',\n",
|
1039 |
+
" 'Hyoscyamine',\n",
|
1040 |
+
" 'Zovirax Cream',\n",
|
1041 |
+
" 'Teriparatide',\n",
|
1042 |
+
" 'Ammonium lactate / halobetasol',\n",
|
1043 |
+
" 'Atenolol',\n",
|
1044 |
+
" 'Testosterone',\n",
|
1045 |
+
" 'Cobicistat / elvitegravir / emtricitabine / tenofovir',\n",
|
1046 |
+
" 'Ethinyl estradiol / ethynodiol',\n",
|
1047 |
+
" 'Embeda',\n",
|
1048 |
+
" 'Duac',\n",
|
1049 |
+
" 'Infliximab',\n",
|
1050 |
+
" 'Deplin',\n",
|
1051 |
+
" 'Penciclovir',\n",
|
1052 |
+
" 'Lupron Depot',\n",
|
1053 |
+
" 'Avelox',\n",
|
1054 |
+
" 'Geodon',\n",
|
1055 |
+
" 'Cogentin',\n",
|
1056 |
+
" 'Mefenamic acid',\n",
|
1057 |
+
" 'Pramosone',\n",
|
1058 |
+
" 'Synalar Ointment',\n",
|
1059 |
+
" 'Emsam',\n",
|
1060 |
+
" 'Doryx',\n",
|
1061 |
+
" 'Ranolazine',\n",
|
1062 |
+
" 'Hylenex',\n",
|
1063 |
+
" 'Cosentyx',\n",
|
1064 |
+
" 'Medrox',\n",
|
1065 |
+
" 'Cipro',\n",
|
1066 |
+
" 'Oxcarbazepine',\n",
|
1067 |
+
" 'Tapentadol',\n",
|
1068 |
+
" 'Cytomel',\n",
|
1069 |
+
" 'Gildess Fe 1 / 20',\n",
|
1070 |
+
" 'Terconazole',\n",
|
1071 |
+
" 'Pneumococcal 13-valent vaccine',\n",
|
1072 |
+
" 'Eflornithine',\n",
|
1073 |
+
" 'Etodolac',\n",
|
1074 |
+
" 'Rabeprazole',\n",
|
1075 |
+
" 'Librax',\n",
|
1076 |
+
" 'Hydrochlorothiazide',\n",
|
1077 |
+
" 'Pradaxa',\n",
|
1078 |
+
" 'Kava',\n",
|
1079 |
+
" 'Focalin XR',\n",
|
1080 |
+
" 'Levlen',\n",
|
1081 |
+
" 'Femara',\n",
|
1082 |
+
" 'Migranal',\n",
|
1083 |
+
" 'Gianvi',\n",
|
1084 |
+
" 'Flonase',\n",
|
1085 |
+
" 'Stendra',\n",
|
1086 |
+
" 'Dilaudid',\n",
|
1087 |
+
" 'Exenatide',\n",
|
1088 |
+
" 'Risperdal',\n",
|
1089 |
+
" 'Teriflunomide',\n",
|
1090 |
+
" 'Esterified estrogens / methyltestosterone',\n",
|
1091 |
+
" 'Loratadine / pseudoephedrine',\n",
|
1092 |
+
" 'Azithromycin Dose Pack',\n",
|
1093 |
+
" 'Pylera',\n",
|
1094 |
+
" 'Protonix IV',\n",
|
1095 |
+
" 'Vraylar',\n",
|
1096 |
+
" 'Adapalene',\n",
|
1097 |
+
" 'Camrese',\n",
|
1098 |
+
" 'GaviLyte-N',\n",
|
1099 |
+
" 'Dimenhydrinate',\n",
|
1100 |
+
" 'Microgestin 1 / 20',\n",
|
1101 |
+
" 'Midazolam',\n",
|
1102 |
+
" 'Moxifloxacin',\n",
|
1103 |
+
" 'Multivitamin with minerals',\n",
|
1104 |
+
" 'Amoxicillin',\n",
|
1105 |
+
" 'Butrans',\n",
|
1106 |
+
" 'Lamictal',\n",
|
1107 |
+
" 'Clomid',\n",
|
1108 |
+
" 'Spiriva',\n",
|
1109 |
+
" 'Requip',\n",
|
1110 |
+
" 'Celebrex',\n",
|
1111 |
+
" 'Nasacort Allergy 24HR',\n",
|
1112 |
+
" 'Metformin / saxagliptin',\n",
|
1113 |
+
" 'Bunavail',\n",
|
1114 |
+
" 'Soolantra',\n",
|
1115 |
+
" 'Acetaminophen / aspirin / caffeine',\n",
|
1116 |
+
" 'Halcion',\n",
|
1117 |
+
" 'Ramelteon',\n",
|
1118 |
+
" 'Invokana',\n",
|
1119 |
+
" 'Colesevelam',\n",
|
1120 |
+
" 'Fulvestrant',\n",
|
1121 |
+
" 'Natalizumab',\n",
|
1122 |
+
" 'Benicar',\n",
|
1123 |
+
" 'LoSeasonique',\n",
|
1124 |
+
" 'Lifitegrast',\n",
|
1125 |
+
" 'Hycodan',\n",
|
1126 |
+
" 'Icosapent',\n",
|
1127 |
+
" 'Azelastine',\n",
|
1128 |
+
" 'Efinaconazole',\n",
|
1129 |
+
" 'Loratadine',\n",
|
1130 |
+
" 'Rexulti',\n",
|
1131 |
+
" 'Sanctura',\n",
|
1132 |
+
" 'Clozapine',\n",
|
1133 |
+
" 'Benadryl Allergy',\n",
|
1134 |
+
" 'Luminal',\n",
|
1135 |
+
" 'Tolterodine',\n",
|
1136 |
+
" 'Benadryl',\n",
|
1137 |
+
" 'Insulin lispro',\n",
|
1138 |
+
" 'Albuterol',\n",
|
1139 |
+
" 'Sucralfate',\n",
|
1140 |
+
" 'Mydayis',\n",
|
1141 |
+
" 'Fluocinolone',\n",
|
1142 |
+
" 'Biotin',\n",
|
1143 |
+
" 'Ocella',\n",
|
1144 |
+
" 'Bromfed DM',\n",
|
1145 |
+
" 'Losartan',\n",
|
1146 |
+
" 'Lasix',\n",
|
1147 |
+
" 'Itraconazole',\n",
|
1148 |
+
" 'Methylnaltrexone',\n",
|
1149 |
+
" 'Cutivate',\n",
|
1150 |
+
" 'Cyred',\n",
|
1151 |
+
" 'Breo Ellipta',\n",
|
1152 |
+
" 'Limbrel',\n",
|
1153 |
+
" 'Prilosec',\n",
|
1154 |
+
" 'Talwin Nx',\n",
|
1155 |
+
" 'Concerta',\n",
|
1156 |
+
" 'Praluent',\n",
|
1157 |
+
" 'Tarceva',\n",
|
1158 |
+
" 'Farxiga',\n",
|
1159 |
+
" 'Halobetasol',\n",
|
1160 |
+
" 'Biaxin',\n",
|
1161 |
+
" 'Kenalog-40',\n",
|
1162 |
+
" 'Thyroid desiccated',\n",
|
1163 |
+
" 'Naproxen / sumatriptan',\n",
|
1164 |
+
" 'Botox',\n",
|
1165 |
+
" 'Guanfacine',\n",
|
1166 |
+
" 'Vimpat',\n",
|
1167 |
+
" 'Fenofibrate',\n",
|
1168 |
+
" 'E-Z-Gas II',\n",
|
1169 |
+
" 'Intelence',\n",
|
1170 |
+
" 'Chlorpheniramine / hydrocodone',\n",
|
1171 |
+
" 'Ertaczo',\n",
|
1172 |
+
" 'Minipress',\n",
|
1173 |
+
" 'Amethyst',\n",
|
1174 |
+
" 'Sensipar',\n",
|
1175 |
+
" 'Lupron',\n",
|
1176 |
+
" 'Furosemide',\n",
|
1177 |
+
" 'Phendimetrazine',\n",
|
1178 |
+
" 'Asacol',\n",
|
1179 |
+
" 'Provigil',\n",
|
1180 |
+
" 'Sulfacetamide sodium',\n",
|
1181 |
+
" 'Zoledronic acid',\n",
|
1182 |
+
" 'Claravis',\n",
|
1183 |
+
" 'Cyanocobalamin',\n",
|
1184 |
+
" 'Aleve',\n",
|
1185 |
+
" 'Alprostadil',\n",
|
1186 |
+
" 'Flagyl',\n",
|
1187 |
+
" 'Clopidogrel',\n",
|
1188 |
+
" 'Gildess Fe 1.5 / 30',\n",
|
1189 |
+
" 'Astelin',\n",
|
1190 |
+
" 'Atropine / hyoscyamine / phenobarbital / scopolamine',\n",
|
1191 |
+
" 'Aldactone',\n",
|
1192 |
+
" 'Altabax',\n",
|
1193 |
+
" 'Seasonale',\n",
|
1194 |
+
" 'Amlodipine / olmesartan',\n",
|
1195 |
+
" 'Invega',\n",
|
1196 |
+
" 'Rituximab',\n",
|
1197 |
+
" 'Delsym',\n",
|
1198 |
+
" 'Selegiline',\n",
|
1199 |
+
" 'Fastin',\n",
|
1200 |
+
" 'Larin Fe 1 / 20',\n",
|
1201 |
+
" 'Amphetamine',\n",
|
1202 |
+
" 'Buprenorphine',\n",
|
1203 |
+
" 'Fleet Enema',\n",
|
1204 |
+
" 'Yuvafem',\n",
|
1205 |
+
" 'Lodine',\n",
|
1206 |
+
" 'Fesoterodine',\n",
|
1207 |
+
" 'Xylometazoline',\n",
|
1208 |
+
" 'Cyproheptadine',\n",
|
1209 |
+
" 'Benzoic acid / salicylic acid',\n",
|
1210 |
+
" 'Adalat CC',\n",
|
1211 |
+
" 'Methylergonovine',\n",
|
1212 |
+
" 'Vistaril',\n",
|
1213 |
+
" 'Chlordiazepoxide / clidinium',\n",
|
1214 |
+
" 'Taytulla',\n",
|
1215 |
+
" 'Zyrtec',\n",
|
1216 |
+
" 'Tysabri',\n",
|
1217 |
+
" 'Hylan g-f 20',\n",
|
1218 |
+
" 'Tussionex Pennkinetic',\n",
|
1219 |
+
" 'Jalyn',\n",
|
1220 |
+
" 'Excedrin Back & Body',\n",
|
1221 |
+
" 'Polyethylene glycol 3350',\n",
|
1222 |
+
" 'Phosphorated carbohydrate solution',\n",
|
1223 |
+
" 'Lamisil',\n",
|
1224 |
+
" 'Neupro',\n",
|
1225 |
+
" 'Brimonidine / timolol',\n",
|
1226 |
+
" 'Supprelin LA',\n",
|
1227 |
+
" 'Miconazole / zinc oxide',\n",
|
1228 |
+
" 'Zubsolv',\n",
|
1229 |
+
" 'Aspirin / butalbital / caffeine',\n",
|
1230 |
+
" 'Senna',\n",
|
1231 |
+
" 'Denavir',\n",
|
1232 |
+
" 'D.H.E. 45',\n",
|
1233 |
+
" 'Beclomethasone',\n",
|
1234 |
+
" 'Neurontin',\n",
|
1235 |
+
" 'Robaxin-750',\n",
|
1236 |
+
" 'Thorazine',\n",
|
1237 |
+
" 'Bydureon',\n",
|
1238 |
+
" 'Meridia',\n",
|
1239 |
+
" 'Fiorinal',\n",
|
1240 |
+
" 'Carbamazepine',\n",
|
1241 |
+
" 'Multivitamin, prenatal',\n",
|
1242 |
+
" 'Nivolumab',\n",
|
1243 |
+
" 'Hetlioz',\n",
|
1244 |
+
" 'Crisaborole',\n",
|
1245 |
+
" 'Tazorac',\n",
|
1246 |
+
" 'Lomotil',\n",
|
1247 |
+
" 'Oxytrol',\n",
|
1248 |
+
" 'Zaleplon',\n",
|
1249 |
+
" 'Disulfiram',\n",
|
1250 |
+
" 'Loestrin 21 1 / 20',\n",
|
1251 |
+
" 'Silodosin',\n",
|
1252 |
+
" 'Fiorinal with Codeine',\n",
|
1253 |
+
" 'Elmiron',\n",
|
1254 |
+
" 'Lithium',\n",
|
1255 |
+
" 'Levophed',\n",
|
1256 |
+
" 'Remicade',\n",
|
1257 |
+
" 'Gilenya',\n",
|
1258 |
+
" 'Reclipsen',\n",
|
1259 |
+
" 'Atripla',\n",
|
1260 |
+
" 'Droperidol',\n",
|
1261 |
+
" 'Trihexyphenidyl',\n",
|
1262 |
+
" 'Estropipate',\n",
|
1263 |
+
" 'Podofilox',\n",
|
1264 |
+
" 'Symbicort',\n",
|
1265 |
+
" 'Xerac AC',\n",
|
1266 |
+
" 'Maxalt-MLT',\n",
|
1267 |
+
" 'Fluticasone / salmeterol',\n",
|
1268 |
+
" 'Propulsid',\n",
|
1269 |
+
" 'Aricept',\n",
|
1270 |
+
" 'Nebivolol',\n",
|
1271 |
+
" 'Simvastatin',\n",
|
1272 |
+
" 'Tradjenta',\n",
|
1273 |
+
" 'Zomig-ZMT',\n",
|
1274 |
+
" 'Colchicine',\n",
|
1275 |
+
" 'Dasatinib',\n",
|
1276 |
+
" 'Ventolin HFA',\n",
|
1277 |
+
" 'Aciphex',\n",
|
1278 |
+
" 'Imipramine',\n",
|
1279 |
+
" 'NoDoz',\n",
|
1280 |
+
" 'Ciprofloxacin / dexamethasone',\n",
|
1281 |
+
" 'TriCor',\n",
|
1282 |
+
" 'Elavil',\n",
|
1283 |
+
" 'Enoxaparin',\n",
|
1284 |
+
" 'Lovastatin',\n",
|
1285 |
+
" 'Next Choice',\n",
|
1286 |
+
" 'Hypercare',\n",
|
1287 |
+
" 'Lithobid',\n",
|
1288 |
+
" 'Dextrostat',\n",
|
1289 |
+
" 'Pembrolizumab',\n",
|
1290 |
+
" 'Fluvoxamine',\n",
|
1291 |
+
" 'Panlor DC',\n",
|
1292 |
+
" 'Endocet',\n",
|
1293 |
+
" 'Advil Cold and Sinus',\n",
|
1294 |
+
" 'Ubiquinone',\n",
|
1295 |
+
" 'Avanafil',\n",
|
1296 |
+
" 'Letrozole',\n",
|
1297 |
+
" 'Hiprex',\n",
|
1298 |
+
" 'Prialt',\n",
|
1299 |
+
" 'Clomipramine',\n",
|
1300 |
+
" 'Opana ER',\n",
|
1301 |
+
" 'Bonine',\n",
|
1302 |
+
" 'Ambien CR',\n",
|
1303 |
+
" 'Tenex',\n",
|
1304 |
+
" 'Zelnorm',\n",
|
1305 |
+
" 'Eligard',\n",
|
1306 |
+
" 'Dymista',\n",
|
1307 |
+
" 'Guaifenesin',\n",
|
1308 |
+
" 'My Way',\n",
|
1309 |
+
" 'Pataday',\n",
|
1310 |
+
" 'Rectiv',\n",
|
1311 |
+
" 'Valproic acid',\n",
|
1312 |
+
" 'Brilinta',\n",
|
1313 |
+
" 'Eucrisa',\n",
|
1314 |
+
" 'Dextroamphetamine',\n",
|
1315 |
+
" 'Cabergoline',\n",
|
1316 |
+
" 'DDAVP Rhinal Tube',\n",
|
1317 |
+
" 'Zyprexa',\n",
|
1318 |
+
" 'Hydrochlorothiazide / lisinopril',\n",
|
1319 |
+
" 'Carac',\n",
|
1320 |
+
" 'Ezetimibe / simvastatin',\n",
|
1321 |
+
" 'Rivaroxaban',\n",
|
1322 |
+
" 'Homatropine / hydrocodone',\n",
|
1323 |
+
" 'Umeclidinium / vilanterol',\n",
|
1324 |
+
" 'Gabitril',\n",
|
1325 |
+
" 'Wellbutrin SR',\n",
|
1326 |
+
" 'Avodart',\n",
|
1327 |
+
" 'Prednisolone',\n",
|
1328 |
+
" 'Zonisamide',\n",
|
1329 |
+
" 'Bactrim DS',\n",
|
1330 |
+
" 'Cephalexin',\n",
|
1331 |
+
" 'Hydrea',\n",
|
1332 |
+
" 'Ortho D',\n",
|
1333 |
+
" 'Trulance',\n",
|
1334 |
+
" 'Generess Fe',\n",
|
1335 |
+
" 'Naphazoline / pheniramine',\n",
|
1336 |
+
" 'Synvisc',\n",
|
1337 |
+
" 'Testim',\n",
|
1338 |
+
" 'Advil',\n",
|
1339 |
+
" 'Tri-Lo-Sprintec',\n",
|
1340 |
+
" 'Vivarin',\n",
|
1341 |
+
" 'Cariprazine',\n",
|
1342 |
+
" 'Brexpiprazole',\n",
|
1343 |
+
" 'Imuran',\n",
|
1344 |
+
" 'Baclofen',\n",
|
1345 |
+
" 'Mexiletine',\n",
|
1346 |
+
" 'Dabigatran',\n",
|
1347 |
+
" 'Silenor',\n",
|
1348 |
+
" 'femhrt',\n",
|
1349 |
+
" 'Oramorph SR',\n",
|
1350 |
+
" 'Provera',\n",
|
1351 |
+
" 'Correctol',\n",
|
1352 |
+
" 'Celestone',\n",
|
1353 |
+
" 'Benazepril',\n",
|
1354 |
+
" 'Dasabuvir / ombitasvir / paritaprevir / ritonavir',\n",
|
1355 |
+
" 'Jardiance',\n",
|
1356 |
+
" 'Ranexa',\n",
|
1357 |
+
" 'Axiron',\n",
|
1358 |
+
" 'Nora-Be',\n",
|
1359 |
+
" 'Radium 223 dichloride',\n",
|
1360 |
+
" 'Hydrochlorothiazide / triamterene',\n",
|
1361 |
+
" 'Frova',\n",
|
1362 |
+
" 'Finacea',\n",
|
1363 |
+
" 'Biaxin XL',\n",
|
1364 |
+
" 'Eliquis',\n",
|
1365 |
+
" 'Januvia',\n",
|
1366 |
+
" 'Eptifibatide',\n",
|
1367 |
+
" 'Levalbuterol',\n",
|
1368 |
+
" 'Ibrance',\n",
|
1369 |
+
" 'Patanase',\n",
|
1370 |
+
" 'Amitiza',\n",
|
1371 |
+
" 'Creon',\n",
|
1372 |
+
" 'Clobetasol',\n",
|
1373 |
+
" 'Dextromethorphan / guaifenesin',\n",
|
1374 |
+
" 'Indocin SR',\n",
|
1375 |
+
" 'Xolair',\n",
|
1376 |
+
" 'Veltin',\n",
|
1377 |
+
" 'NP Thyroid',\n",
|
1378 |
+
" 'Urea',\n",
|
1379 |
+
" 'Almotriptan',\n",
|
1380 |
+
" 'Necon 1 / 35',\n",
|
1381 |
+
" 'Nefazodone',\n",
|
1382 |
+
" 'Aclidinium',\n",
|
1383 |
+
" 'Linezolid',\n",
|
1384 |
+
" 'Basaglar',\n",
|
1385 |
+
" 'Euflexxa',\n",
|
1386 |
+
" 'Bismuth subcitrate potassium / metronidazole / tetracycline',\n",
|
1387 |
+
" 'Solifenacin',\n",
|
1388 |
+
" 'Colazal',\n",
|
1389 |
+
" 'Hydroxyurea',\n",
|
1390 |
+
" 'Levocetirizine',\n",
|
1391 |
+
" 'Diflucan',\n",
|
1392 |
+
" 'Debrox',\n",
|
1393 |
+
" 'Estradiol Patch',\n",
|
1394 |
+
" 'Nubain',\n",
|
1395 |
+
" 'Skelaxin',\n",
|
1396 |
+
" 'Ponatinib',\n",
|
1397 |
+
" 'Zarah',\n",
|
1398 |
+
" 'Tranxene',\n",
|
1399 |
+
" 'Ranibizumab',\n",
|
1400 |
+
" 'Belbuca',\n",
|
1401 |
+
" 'Stelara',\n",
|
1402 |
+
" 'Mucinex DM',\n",
|
1403 |
+
" 'Ultram ER',\n",
|
1404 |
+
" 'Chlorzoxazone',\n",
|
1405 |
+
" 'Toviaz',\n",
|
1406 |
+
" 'Oxazepam',\n",
|
1407 |
+
" 'Alfuzosin',\n",
|
1408 |
+
" 'Cenestin',\n",
|
1409 |
+
" 'Haldol',\n",
|
1410 |
+
" 'MetroGel',\n",
|
1411 |
+
" 'Ketamine',\n",
|
1412 |
+
" 'Nucynta',\n",
|
1413 |
+
" 'Zyban',\n",
|
1414 |
+
" 'Solodyn',\n",
|
1415 |
+
" 'Ponstel',\n",
|
1416 |
+
" 'Mestinon',\n",
|
1417 |
+
" 'Galantamine',\n",
|
1418 |
+
" 'Orsythia',\n",
|
1419 |
+
" 'Diphenhydramine / naproxen',\n",
|
1420 |
+
" 'Allegra',\n",
|
1421 |
+
" 'Simponi Aria',\n",
|
1422 |
+
" 'Loperamide',\n",
|
1423 |
+
" 'Fexofenadine',\n",
|
1424 |
+
" 'Nicotrol Inhaler',\n",
|
1425 |
+
" 'Fluoroplex',\n",
|
1426 |
+
" 'Imitrex',\n",
|
1427 |
+
" 'Micardis',\n",
|
1428 |
+
" 'Zithromax',\n",
|
1429 |
+
" 'Ranitidine',\n",
|
1430 |
+
" 'Zytiga',\n",
|
1431 |
+
" 'Daklinza',\n",
|
1432 |
+
" 'Zovirax',\n",
|
1433 |
+
" 'Daliresp',\n",
|
1434 |
+
" 'Toradol IV / IM',\n",
|
1435 |
+
" 'Casodex',\n",
|
1436 |
+
" 'Sklice',\n",
|
1437 |
+
" 'Tri-Linyah',\n",
|
1438 |
+
" 'Dihydroergotamine',\n",
|
1439 |
+
" 'Antabuse',\n",
|
1440 |
+
" 'Modafinil',\n",
|
1441 |
+
" 'Bromocriptine',\n",
|
1442 |
+
" 'Amoxicillin / clarithromycin / lansoprazole',\n",
|
1443 |
+
" 'Fleet Phospho Soda',\n",
|
1444 |
+
" 'Pulmicort Turbuhaler',\n",
|
1445 |
+
" 'Prograf',\n",
|
1446 |
+
" 'Naprelan',\n",
|
1447 |
+
" 'Cinryze',\n",
|
1448 |
+
" 'Triazolam',\n",
|
1449 |
+
" 'Anafranil',\n",
|
1450 |
+
" 'Garlic',\n",
|
1451 |
+
" 'Tamoxifen',\n",
|
1452 |
+
" 'Ibuprofen',\n",
|
1453 |
+
" 'Rogaine',\n",
|
1454 |
+
" 'L-methylfolate',\n",
|
1455 |
+
" 'Insulin glargine',\n",
|
1456 |
+
" 'Histrelin',\n",
|
1457 |
+
" 'Armour Thyroid',\n",
|
1458 |
+
" 'Claritin-D',\n",
|
1459 |
+
" 'Adzenys XR-ODT',\n",
|
1460 |
+
" 'Tegaserod',\n",
|
1461 |
+
" 'Ashlyna',\n",
|
1462 |
+
" 'Otezla',\n",
|
1463 |
+
" 'Chlorhexidine',\n",
|
1464 |
+
" 'Atropine / diphenoxylate',\n",
|
1465 |
+
" 'Actemra',\n",
|
1466 |
+
" 'Budesonide / formoterol',\n",
|
1467 |
+
" 'Tri-Luma',\n",
|
1468 |
+
" ...]"
|
1469 |
+
]
|
1470 |
+
},
|
1471 |
+
"execution_count": 49,
|
1472 |
+
"metadata": {},
|
1473 |
+
"output_type": "execute_result"
|
1474 |
+
}
|
1475 |
+
],
|
1476 |
+
"source": [
|
1477 |
+
"arr.tolist()"
|
1478 |
+
]
|
1479 |
+
},
|
1480 |
+
{
|
1481 |
+
"cell_type": "code",
|
1482 |
+
"execution_count": null,
|
1483 |
+
"metadata": {},
|
1484 |
+
"outputs": [],
|
1485 |
+
"source": []
|
1486 |
+
}
|
1487 |
+
],
|
1488 |
+
"metadata": {
|
1489 |
+
"kernelspec": {
|
1490 |
+
"display_name": ".venv",
|
1491 |
+
"language": "python",
|
1492 |
+
"name": "python3"
|
1493 |
+
},
|
1494 |
+
"language_info": {
|
1495 |
+
"codemirror_mode": {
|
1496 |
+
"name": "ipython",
|
1497 |
+
"version": 3
|
1498 |
+
},
|
1499 |
+
"file_extension": ".py",
|
1500 |
+
"mimetype": "text/x-python",
|
1501 |
+
"name": "python",
|
1502 |
+
"nbconvert_exporter": "python",
|
1503 |
+
"pygments_lexer": "ipython3",
|
1504 |
+
"version": "3.10.12"
|
1505 |
+
}
|
1506 |
+
},
|
1507 |
+
"nbformat": 4,
|
1508 |
+
"nbformat_minor": 2
|
1509 |
+
}
|
unique_drugs.txt
ADDED
@@ -0,0 +1,221 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"Breo Ellipta","Limbrel","Prilosec","Talwin Nx","Concerta","Praluent","Tarceva","Farxiga","Halobetasol","Biaxin","Kenalog-40",
|
2 |
+
"Thyroid desiccated","Naproxen / sumatriptan","Botox","Guanfacine","Vimpat","Fenofibrate","E-Z-Gas II","Intelence",
|
3 |
+
"Chlorpheniramine / hydrocodone","Ertaczo","Minipress","Amethyst","Sensipar","Lupron","Furosemide","Phendimetrazine","Asacol",
|
4 |
+
"Provigil","Sulfacetamide sodium","Zoledronic acid","Claravis","Cyanocobalamin","Aleve","Alprostadil","Flagyl","Clopidogrel",
|
5 |
+
"Gildess Fe 1.5 / 30","Astelin","Atropine / hyoscyamine / phenobarbital / scopolamine","Aldactone","Altabax","Seasonale",
|
6 |
+
"Amlodipine / olmesartan","Invega","Rituximab","Delsym","Selegiline","Fastin","Larin Fe 1 / 20","Amphetamine","Buprenorphine",
|
7 |
+
"Fleet Enema","Yuvafem","Lodine","Fesoterodine","Xylometazoline","Cyproheptadine","Benzoic acid / salicylic acid","Adalat CC",
|
8 |
+
"Methylergonovine","Vistaril","Chlordiazepoxide / clidinium","Taytulla","Zyrtec","Tysabri","Hylan g-f 20","Tussionex Pennkinetic",
|
9 |
+
"Jalyn","Excedrin Back & Body","Polyethylene glycol 3350","Phosphorated carbohydrate solution","Lamisil","Neupro","Brimonidine / timolol",
|
10 |
+
"Supprelin LA","Miconazole / zinc oxide","Zubsolv","Aspirin / butalbital / caffeine","Senna","Denavir","D.H.E. 45","Beclomethasone",
|
11 |
+
"Neurontin","Robaxin-750","Thorazine","Bydureon","Meridia","Fiorinal","Carbamazepine","Multivitamin, prenatal","Nivolumab","Hetlioz",
|
12 |
+
"Crisaborole","Tazorac","Lomotil","Oxytrol","Zaleplon","Disulfiram","Loestrin 21 1 / 20","Silodosin","Fiorinal with Codeine","Elmiron",
|
13 |
+
"Lithium","Levophed","Remicade","Gilenya","Reclipsen","Atripla","Droperidol","Trihexyphenidyl","Estropipate","Podofilox","Symbicort",
|
14 |
+
"Xerac AC","Maxalt-MLT","Fluticasone / salmeterol","Propulsid","Aricept","Nebivolol","Simvastatin","Tradjenta","Zomig-ZMT","Colchicine",
|
15 |
+
"Dasatinib","Ventolin HFA","Aciphex","Imipramine","NoDoz","Ciprofloxacin / dexamethasone","TriCor","Elavil","Enoxaparin","Lovastatin",
|
16 |
+
"Next Choice","Hypercare","Lithobid","Dextrostat","Pembrolizumab","Fluvoxamine","Panlor DC","Endocet","Advil Cold and Sinus","Ubiquinone",
|
17 |
+
"Avanafil","Letrozole","Hiprex","Prialt","Clomipramine","Opana ER","Bonine","Ambien CR","Tenex","Zelnorm","Eligard","Dymista","Guaifenesin",
|
18 |
+
"My Way","Pataday","Rectiv","Valproic acid","Brilinta","Eucrisa","Dextroamphetamine","Cabergoline","DDAVP Rhinal Tube","Zyprexa",
|
19 |
+
"Hydrochlorothiazide / lisinopril","Carac","Ezetimibe / simvastatin","Rivaroxaban","Homatropine / hydrocodone","Umeclidinium / vilanterol",
|
20 |
+
"Gabitril","Wellbutrin SR","Avodart","Prednisolone","Zonisamide","Bactrim DS","Cephalexin","Hydrea","Ortho D","Trulance","Generess Fe",
|
21 |
+
"Naphazoline / pheniramine","Synvisc","Testim","Advil","Tri-Lo-Sprintec","Vivarin","Cariprazine","Brexpiprazole","Imuran","Baclofen",
|
22 |
+
"Mexiletine","Dabigatran","Silenor","femhrt","Oramorph SR","Provera","Correctol","Celestone","Benazepril",
|
23 |
+
"Dasabuvir / ombitasvir / paritaprevir / ritonavir","Jardiance","Ranexa","Axiron","Nora-Be","Radium 223 dichloride",
|
24 |
+
"Hydrochlorothiazide / triamterene","Frova","Finacea","Biaxin XL","Eliquis","Januvia","Eptifibatide","Levalbuterol","Ibrance","Patanase",
|
25 |
+
"Amitiza","Creon","Clobetasol","Dextromethorphan / guaifenesin","Indocin SR","Xolair","Veltin","NP Thyroid","Urea","Almotriptan",
|
26 |
+
"Necon 1 / 35","Nefazodone","Aclidinium","Linezolid","Basaglar","Euflexxa","Bismuth subcitrate potassium / metronidazole / tetracycline",
|
27 |
+
"Solifenacin","Colazal","Hydroxyurea","Levocetirizine","Diflucan","Debrox","Estradiol Patch","Nubain","Skelaxin","Ponatinib","Zarah","Tranxene",
|
28 |
+
"Ranibizumab","Belbuca","Stelara","Mucinex DM","Ultram ER","Chlorzoxazone","Toviaz","Oxazepam","Alfuzosin","Cenestin","Haldol","MetroGel",
|
29 |
+
"Ketamine","Nucynta","Zyban","Solodyn","Ponstel","Mestinon","Galantamine","Orsythia","Diphenhydramine / naproxen","Allegra","Simponi Aria",
|
30 |
+
"Loperamide","Fexofenadine","Nicotrol Inhaler","Fluoroplex","Imitrex","Micardis","Zithromax","Ranitidine","Zytiga","Daklinza","Zovirax",
|
31 |
+
"Daliresp","Toradol IV / IM","Casodex","Sklice","Tri-Linyah","Dihydroergotamine","Antabuse","Modafinil","Bromocriptine",
|
32 |
+
"Amoxicillin / clarithromycin / lansoprazole","Fleet Phospho Soda","Pulmicort Turbuhaler","Prograf","Naprelan","Cinryze","Triazolam",
|
33 |
+
"Anafranil","Garlic","Tamoxifen","Ibuprofen","Rogaine","L-methylfolate","Insulin glargine","Histrelin","Armour Thyroid","Claritin-D",
|
34 |
+
"Adzenys XR-ODT","Tegaserod","Ashlyna","Otezla","Chlorhexidine","Atropine / diphenoxylate","Actemra","Budesonide / formoterol","Tri-Luma",
|
35 |
+
"Senna Plus","Flomax","Secobarbital","Abreva","Triamcinolone","Estraderm","Zenatane","Mobic","Complera","Opium","Dinoprostone","Amaryl",
|
36 |
+
"Solu-Medrol","Polycarbophil","Goserelin","Sulfacetamide sodium / sulfur","Phenytoin","Omeprazole / sodium bicarbonate","Perphenazine",
|
37 |
+
"Blisovi 24 Fe","Avonex","Emetrol","Esgic","Cervidil","Stribild","Lorazepam Intensol","Acetaminophen / caffeine / dihydrocodeine",
|
38 |
+
"St. john's wort","Cefixime","Moxatag","Golimumab","Dermal filler","Glimepiride / rosiglitazone","Somnote","Plaquenil","Xanax XR",
|
39 |
+
"Simponi","Flagyl ER","Acetaminophen / propoxyphene","Interferon beta-1a","Efavirenz / emtricitabine / tenofovir","Coreg","Nasacort",
|
40 |
+
"Doxylamine","Abilify Discmelt","Daytrana","Bystolic","Sunitinib","Verapamil","Camila","Jolivette","Lac-Hydrin","Oxymetazoline",
|
41 |
+
"Sine-Off Maximum Strength","Acetazolamide","Tanzeum","Lyza","Estring","Diprivan","Dexlansoprazole","Clorazepate","Uloric",
|
42 |
+
"Epinephrine","Percodan","Allopurinol","Norpramin","Valtrex","Cevimeline","Mycophenolate mofetil","Gardasil","Pyrantel",
|
43 |
+
"Mucinex D Maximum Strength","Fioricet with Codeine","Banzel","Tri-Lo-Estarylla","Dovonex","Travoprost","Hydrocodone / ibuprofen",
|
44 |
+
"Pimecrolimus","Cosopt","Chondroitin / glucosamine","Edarbyclor","Taltz","Prolia","TobraDex","Eyebright","Retin-A","Minivelle",
|
45 |
+
"Parnate","Sacubitril / valsartan","Acetaminophen / butalbital / caffeine / codeine","Nicorette","Cyclogyl","Doral","Stadol",
|
46 |
+
"Cleocin","Levomilnacipran","Exforge","Jentadueto","Lidoderm","Trospium","Methylin","Chlorpheniramine","Desquam-X Wash","Glimepiride",
|
47 |
+
"Ansaid","Famciclovir","Velivet","Estradiol / norethindrone","Dexilant","Zestril","Dofetilide","Lucentis","Omalizumab","Viorele",
|
48 |
+
"Tenuate Dospan","Sharobel","Fosrenol","Lantus","Magnesium hydroxide","Vandazole","Lacosamide","Proctofoam","Balacet","Methenamine",
|
49 |
+
"Aristocort","Zomig","Voltaren Gel","Tenuate","Focalin","Tresiba","Saliva substitutes","Diovan HCT","Ethinyl estradiol / folic acid / levonorgestrel",
|
50 |
+
"Vancomycin","Asmanex Twisthaler","Simply Sleep","Transderm-Scop","Mephobarbital","Prilosec OTC","Alli","Ambrisentan","Prepopik","Trileptal",
|
51 |
+
"Lialda","Fingolimod","Taclonex","Acetaminophen / chlorpheniramine / dextromethorphan / pseudoephedrine","Makena","Isosorbide mononitrate",
|
52 |
+
"Olmesartan","Lidex","Mircette","Trental","Amlodipine / atorvastatin","Treximet","Tocilizumab","Famvir","Zafirlukast","Monurol","Oracea",
|
53 |
+
"Detrol","Tasigna","Ferrous sulfate","Carbatrol","Balsalazide","Prostigmin Bromide","Tranylcypromine","Niaspan","Esgic-Plus","Primidone",
|
54 |
+
"Edluar","Cardizem CD","Incivek","Zepatier","Subutex","Ciprodex","Acetaminophen / tramadol","Repatha","Imbruvica","Treprostinil","Azacitidine",
|
55 |
+
"Gold sodium thiomalate","Protonix","Silvadene","Minocin","Phenelzine","Dimetapp Children's Cold & Cough","Simbrinza","NeutraSal","Synjardy",
|
56 |
+
"Xenical","Xyrem","Voltaren","Tylox","Immune globulin intravenous and subcutaneous","Inderal LA","Vaniqa","Benlysta","Welchol","Humulin N",
|
57 |
+
"Permethrin","Enablex","Levoxyl","Erythromycin","Alendronate","Delatestryl","Desipramine","Omega-3 polyunsaturated fatty acids","Aveed",
|
58 |
+
"Aspirin / dipyridamole","Thiothixene","Hyaluronan","Rocephin","Falmina","Hydralazine","Tarina Fe 1 / 20","Epclusa","Alclometasone","Cafergot",
|
59 |
+
"Amethia","Sotalol Hydrochloride AF","Exelon","Tenormin","Lybrel","Hydrochlorothiazide / losartan","Abilify Maintena",
|
60 |
+
"Acetaminophen / dextromethorphan / guaifenesin / pseudoephedrine","Insulin glulisine","Sudafed PE Congestion","Valsartan","Megestrol",
|
61 |
+
"Vitamin B12","Lorzone","Avastin","MS Contin","Acetaminophen / dextromethorphan / pseudoephedrine","Sominex","Daclatasvir","Metamucil",
|
62 |
+
"Lotemax","Acetaminophen / butalbital","Revlimid","Hizentra","Sotret","Neulasta","Nadolol","Anoro Ellipta","Belimumab","Altavera",
|
63 |
+
"Ritalin-SR","Midodrine","Inova 4 / 1","Zanaflex","Tekturna","Silver","Iophen-C NR","Necon 1 / 50","Pazeo","Echinacea","Depo-Testosterone",
|
64 |
+
"Cataflam","Emollients","Ovide","Psyllium","Vagifem","Acetylcysteine","Granulex","Estrace Vaginal Cream","Arthrotec","Dulcolax Laxative",
|
65 |
+
"Seconal Sodium","Hydroquinone","Salicylic acid","Aftera","Dexamethasone","Librium","Interferon beta-1b","Tofranil","Amnesteem","Zantac 150",
|
66 |
+
"Febuxostat","Afrin","Erlotinib","Lactaid Ultra","Kadian","Serax","Motrin","Atarax","Fexofenadine / pseudoephedrine","Byetta","Senokot",
|
67 |
+
"Marlissa","Premarin","Risedronate","Lexiscan","Salonpas Pain Patch","Rivastigmine","Telaprevir","Orencia","Dimethyl fumarate","Chloral hydrate",
|
68 |
+
"Ticagrelor","Votrient","Cyclophosphamide","Muse","Undecylenic acid","Dronabinol","Lovenox","Sulfazine","Rotigotine","Edex","Bisoprolol / hydrochlorothiazide","Xifaxan","Acetaminophen / diphenhydramine","Butorphanol","Formoterol / mometasone","Trifluoperazine","Boniva","Trimipramine",
|
69 |
+
"Interferon alfa-2b","Rocuronium","Compazine","Tavaborole","Flecainide","Pancrelipase","Ampyra","Tambocor","Misoprostol","Briviact",
|
70 |
+
"Monistat 1-Day or Night Combination Pack","Efudex","Duragesic","Sansert","Chlorcyclizine / phenylephrine","Retapamulin","Uceris",
|
71 |
+
"Levo-Dromoran","Hyosyne","Norvasc","Brimonidine","Ephedrine","Emtricitabine / tenofovir","Angeliq","Prevpac","Dexedrine","Vicodin ES",
|
72 |
+
"Ursodiol","Zelboraf","Premsyn PMS","Ocular lubricant","Premphase","Wart Remover","Dupixent","Emtricitabine / rilpivirine / tenofovir",
|
73 |
+
"Entocort EC","Frovatriptan","Biafine","NovoLog FlexPen","Aspirin","Tindamax","Dramamine","Paregoric","Atovaquone / proguanil",
|
74 |
+
"Errin","Asacol HD","Cheratussin AC","Xeljanz","Glyburide / metformin","Mucinex D","Raltegravir","Famotidine / ibuprofen","Zonegran",
|
75 |
+
"Clindamax","Hyzine","Fluocinonide","Dexbrompheniramine / pseudoephedrine","Telmisartan","Progesterone","Zetia","Abacavir / lamivudine",
|
76 |
+
"Janumet","Hydroxyprogesterone","Peginterferon alfa-2a","Octreotide","Natazia","Low-Ogestrel-21","Quinine","Ciclesonide",
|
77 |
+
"Alavert D-12 Hour Allergy and Sinus","Alrex","Betaseron","Onglyza","Latanoprost","Fanapt","GoLYTELY","Amoxapine","Q-Dryl","Exforge HCT",
|
78 |
+
"Quasense","Diovan","Atrovent","Apomorphine","Sofosbuvir / velpatasvir","Linagliptin","Veramyst","Micardis HCT","Nardil","Acetaminophen",
|
79 |
+
"Dyrenium","Monodox","Aprepitant","Conjugated estrogens / medroxyprogesterone","Lopressor","Benazepril / hydrochlorothiazide","Palbociclib",
|
80 |
+
"Memantine","Acanya","Clindesse","Phendiet","Climara","Motrin Infant Drops","Malarone","Chaparral","Abiraterone","Metadate ER",
|
81 |
+
"Acetaminophen / caffeine","Ketotifen","Ibrutinib","Orap","Benzoyl peroxide / sulfur","Empagliflozin","Red yeast rice",
|
82 |
+
"Visine Totality Multi-Symptom Relief","Amlodipine / benazepril","Xylocaine Jelly","Ulipristal","Xenaderm","Avandia","Multivitamin",
|
83 |
+
"Menthol / zinc oxide","Dificid","Sodium biphosphate / sodium phosphate","Imatinib",
|
84 |
+
"Bisacodyl / polyethylene glycol 3350 / potassium chloride / sodium bicarbonate / sodium chloride","Balsam peru / castor oil / trypsin",
|
85 |
+
"Sotalol","Excedrin","Gas-X","A / B Otic","Betamethasone / calcipotriene","Aldara","Leflunomide","Maxalt","Delsym 12 Hour Cough Relief",
|
86 |
+
"Opsumit","Flunisolide","Gelnique","Taclonex Scalp","Metadate CD","Levemir","Subsys","Vimovo","Univasc","Silver sulfadiazine","Fortesta",
|
87 |
+
"Gralise","Entresto","Eovist","Imdur","Pyridium","Lioresal","Zyvox","Apixaban","Trilafon","Chorionic gonadotropin (hcg)",
|
88 |
+
"Acetaminophen / chlorpheniramine / phenylephrine","Tropicamide","Sleep Aid","Mysoline","Zenpep","Mupirocin","Primatene Mist",
|
89 |
+
"Proventil HFA","Prolixin","Desmopressin","Detrol LA","Vectical","Budeprion XL","Corlanor","Zyrtec-D","Clear Eyes Contact Lens Multi-Action Relief",
|
90 |
+
"Tirosint","Propoxyphene","DDAVP","Diethylpropion","Morphine / naltrexone","Fluoxetine / olanzapine","Loryna","Prezcobix","Salmeterol",
|
91 |
+
"Sporanox","Zyprexa Zydis","Vivelle-Dot","Zofran ODT","Candesartan","Lessina","Iron sucrose","Secukinumab","Lomaira","Activella",
|
92 |
+
\"Insulin degludec","Chlorpheniramine / phenylephrine","Dolophine","Demadex","Fycompa","Amlodipine / valsartan","Robaxin",
|
93 |
+
"Dextromethorphan / quinidine","Spiriva Respimat","Atralin","Goody's Extra-Strength Headache Powders","Immune globulin subcutaneous",
|
94 |
+
"Desogen","Benicar HCT","Zolmitriptan","ProAir RespiClick","Multaq","Klonopin Wafer","Actifed","Apriso","Insulin detemir","Epoprostenol",
|
95 |
+
"Visine-A","Sitagliptin","Ceftriaxone","Dexchlorpheniramine","Bepotastine","Bentyl","Prempro","Camphor / menthol","Amiodarone","Serostim",
|
96 |
+
"Calcipotriene","Estazolam","Ceftin","Sonata","Ketoconazole","Zostrix","Pulmicort Respules","Sorafenib","Durezol","Myophen",
|
97 |
+
"Lactobacillus acidophilus","Pimozide","Dupilumab","Krystexxa","Famotidine","Indocin","Previfem","Rogaine Women's","Gadoxetate disodium",
|
98 |
+
"Cedax","Allerx Dose Pack DF","Sanctura XR","Colcrys","Seconal","Menotropins","Calcitriol","Cefprozil","Codeine / promethazine",
|
99 |
+
"Digoxin","Allegra Allergy","Nonoxynol 9","Tikosyn","Opium Deodorized","Namenda","Reclast","Ethotoin","Pin-X","Methyl salicylate",
|
100 |
+
"Regadenoson","Pirbuterol","Tivicay","Soma Compound","Naratriptan","Phenylephrine","Hydrocortisone","Cetirizine / pseudoephedrine",
|
101 |
+
"Darbepoetin alfa","Letairis","Astepro","Ruxolitinib","Mercaptopurine","Azilsartan medoxomil","Proventil","Amrix","Analpram-HC",
|
102 |
+
"Rifabutin","Livalo","Brompheniramine","Lo / Ovral","Ditropan","Amantadine","Probenecid","Neo-Poly-Dex","Xopenex","Anti-Diarrheal",
|
103 |
+
"Cimzia","Xolegel","Chlorpromazine","Chlorpheniramine / pseudoephedrine","Procrit","GenTeal","Desonide","Rhofade","Salicylic acid / sulfur",
|
104 |
+
"Haloperidol","Benzaclin","Opcon-A","Acidophilus","Capsaicin","Oraqix","Taxotere","Forteo","Naloxone / pentazocine","Advil Liqui-Gels",
|
105 |
+
"Diclofenac / misoprostol","Doxazosin","Bisoprolol","Suprenza","Spectracef","Panlor SS","Glipizide","Yohimbine","Eltrombopag","Cimetidine",
|
106 |
+
"Macitentan","Prodrin","Tums Regular Strength","Trivora","Anakinra","Ketoprofen","Microgestin 1.5 / 30","HalfLytely and Bisacodyl","Nortrel 1 / 35",
|
107 |
+
"QNASL","Advil Cold and Sinus Liqui-Gels","S-adenosylmethionine","Alosetron","Halofantrine","Actonel","Ergocalciferol","Epsom Salt",
|
108 |
+
"Flavoxate","Evoxac","Unisom SleepTabs","Hydrochlorothiazide / valsartan","Nilotinib","Chlorambucil","Fleet Bisacodyl","Budesonide",
|
109 |
+
"Commit","Intron A","Synarel","Tazarotene","Pitavastatin","Fentora","Diamox Sequels","Nexafed Nasal Decongestant","Lemtrada",
|
110 |
+
"Stiolto Respimat","Vedolizumab","Imitrex Nasal","Regorafenib","Clobex","Periogard","Promacta","Adcirca","CitraNatal 90 DHA","Ultracet",
|
111 |
+
"Econazole","Florastor","Ovcon 35","Piroxicam","Acetaminophen / dextromethorphan / guaifenesin / phenylephrine","Mono-Linyah",
|
112 |
+
"Rhinocort Aqua","Bontril Slow Release","Rocaltrol","Bepreve","Aldactazide","Herceptin","Zeasorb-AF","Albuterol / ipratropium",
|
113 |
+
"Aptiom","Estradiol / levonorgestrel","Methscopolamine","Acrivastine / pseudoephedrine","Penicillin VK","Clarifoam EF","Nuedexta",
|
114 |
+
"Truvada","Multivitamin with iron","Feldene","Suprax","Bumetanide","Take Action","Irbesartan","Pimtrea","Azilsartan medoxomil / chlorthalidone",
|
115 |
+
"Lantus Solostar","Invega Sustenna","Naloxone","Tylenol with Codeine #4","Cordarone","Questran Light","Pramoxine / zinc oxide","Relafen",
|
116 |
+
"Tegretol XR","Atenolol / chlorthalidone","Tarka","Brompheniramine / dextromethorphan / pseudoephedrine","Temovate","Conjugated estrogens",
|
117 |
+
"Abatacept","Evekeo","Provenge","Roxicet","Neosporin","Certolizumab","Hydrochlorothiazide / olmesartan","Trolamine salicylate","Diazepam Intensol",
|
118 |
+
"Rynatan","Theophylline","Ezetimibe","Canasa","Elbasvir / grazoprevir","Amlodipine / hydrochlorothiazide / olmesartan",
|
119 |
+
"Pseudoephedrine / triprolidine","Lidocaine / menthol","Selenium sulfide","Nystatin","Kenalog-10","Codeine","Limbitrol DS",
|
120 |
+
"Tetrahydrozoline / zinc sulfate","Ibuprofen / pseudoephedrine","Targretin","Kapvay","Botox Cosmetic","Magnesium salicylate",
|
121 |
+
"Methadone Diskets","Warfarin","Nabumetone","Aplenzin","Hytrin","Rebif","Oleptro","Climara Pro","Staxyn","Tessalon","Imitrex Statdose",
|
122 |
+
"Absorica","Foradil Aerolizer","BenzEFoam Ultra","Crotamiton","Gemifloxacin","Flovent","Bicalutamide","Natroba","Xeljanz XR","Pilocarpine",
|
123 |
+
"pHisoHex","Acetaminophen / phenyltoloxamine","Buproban","Parlodel","Diamox","Gamunex-C","Terbutaline","Gatifloxacin","Formoterol","Prasugrel",
|
124 |
+
"Microzide","Ultram ODT","Poly Iron","Betapace","Zocor","Di-Gel","Epoetin alfa","Feraheme","Lotronex","Tretin-X","Versed","Terazosin","Paclitaxel",
|
125 |
+
"Requip XL","Gonal-f","Pennsaid","Aubagio","Albenza","Insulin aspart / insulin degludec","Kenalog","Eplerenone","Vicoprofen","Albiglutide",
|
126 |
+
"Nexavar","Ortho-Cept","Pamabrom","Aspirin / caffeine / orphenadrine","Ryzolt","Jencycla","Xalkori","Dexamethasone / neomycin / polymyxin b",
|
127 |
+
"Loteprednol / tobramycin","Eribulin","Equetro","Docusate / senna","Coartem","Evista","Ibandronate","Sumavel DosePro","Follicle stimulating hormone",
|
128 |
+
"FreshKote","Heme iron polypeptide","Chlorpheniramine / dextromethorphan / pseudoephedrine","Cloderm","Ipratropium","Albendazole","Betamethasone",
|
129 |
+
"Carafate","Pamine Forte","Phenol","Magnesium oxide","Megace","Azilect","Darvon","Pegasys","Adenosine","Metolazone","Privine","Plecanatide",
|
130 |
+
"R-Tanna","Evamist","Aflibercept","Sitavig","Lomedia 24 Fe","Trusopt","Chromium picolinate","Parathyroid hormone","Flolan","Thioridazine",
|
131 |
+
"Flurandrenolide","MetroGel-Vaginal","Sorbitol","Calcium carbonate","Prenatabs FA","Nyamyc","Pepto-Bismol","Bextra","Addyi","Cortisporin Otic",
|
132 |
+
"Desoxyn","Clobazam","Fenoprofen","Desoximetasone","Dextromethorphan / guaifenesin / phenylephrine","Fluorometholone","Ammonium lactate",
|
133 |
+
"Polymyxin b / trimethoprim","Sustiva","Nicotrol NS","Exparel","Uricalm","Valerian","VisRx Dose Pack","Naphazoline","Dobutamine","Tolnaftate",
|
134 |
+
"Avapro","Benzphetamine","Sancuso","Protopic","Firazyr","Zinc oxide","Uribel","Qvar","Zymar","Combivent","Trilipix","Incruse Ellipta",
|
135 |
+
"Insulin isophane","Amitriptyline / perphenazine","OsmoPrep","Balziva","Tobramycin","Orudis KT","Deblitane","Norflex","EpiCeram","Siliq",
|
136 |
+
"Azo-Standard","Codimal DM","Fulvicin U / F","Fluocinolone / hydroquinone / tretinoin","Calci-Chew","Norpace","Crizotinib","Evzio",
|
137 |
+
"Rebif Rebidose","Collagenase Santyl","Anacin","Zaroxolyn","GlipiZIDE XL","Dronedarone","Loxapine","Derma-Smoothe / FS (Scalp)","Gemfibrozil",
|
138 |
+
"Invega Trinza","Clarinex","Systane","Dolutegravir","Necon 7 / 7 / 7","GaviLyte-G","Cartia XT","Humulin R U-500 (Concentrated)","Sebulex",
|
139 |
+
"Fidaxomicin","Repaglinide","Toujeo","Methergine","Romiplostim","Atovaquone","Bazedoxifene / conjugated estrogens","Esomeprazole / naproxen",
|
140 |
+
"Clozaril","Sarafem","Florinef Acetate","Insulin regular","Nystatin / triamcinolone","Cosopt PF","Hydrocortisone / pramoxine","Fenofibric acid",
|
141 |
+
"Bactroban","Vestura","Orapred","Toujeo Solostar","Zovia 1 / 50","Bensal HP","Chlorpheniramine / dextromethorphan","Quinapril","Deconamine",
|
142 |
+
"Intal","Vidaza","Tranxene SD","Ferric citrate","Aerobid","Alirocumab","Amitriptyline / chlordiazepoxide","Stromectol","Loestrin Fe 1 / 20",
|
143 |
+
"TussiCaps","Vicks Sinex Nasal Spray (old formulation)","Isoniazid","Onfi","Nimotop","Mycolog II","Trimethobenzamide","Ospemifene",
|
144 |
+
"Acetaminophen / aspirin / caffeine / salicylamide","Exemestane","Elestrin","Lenalidomide","Urispas","Prevnar 13","Uristat","Doxy 100",
|
145 |
+
"Allegra-D 24 Hour","Lidocaine / prilocaine","Zometa","Psoriasin","Metozolv ODT","Glucophage XR","Dexamethasone Intensol","Tetracycline",
|
146 |
+
"Volumen","Loprox","Angiomax","Acetaminophen / pamabrom","Neupogen","Ortho-Novum 7 / 7 / 7","Timolol","Vytorin","Lindane","Bayer Aspirin",
|
147 |
+
"Kalbitor","Tudorza Pressair","Habitrol","Cefpodoxime","Xtampza ER","Gentamicin","Amcinonide","Sildec-PE DM","Eslicarbazepine",
|
148 |
+
"Aspirin / meprobamate","Drixoral Cold and Allergy","Noritate","Ortho-Novum 1 / 35","Caverject","Penicillin g benzathine","Duavee",
|
149 |
+
"Mefloquine","ProAir HFA","Dyanavel XR","Influenza virus vaccine, inactivated","Prascion RA","Cardizem","Moderiba","Levsin","Tigan",
|
150 |
+
"Magnesium amino acids chelate","Voltaren-XR","NuOx","Oxistat","Altace","Excedrin PM","DynaCirc CR","Lo / Ovral-28","Lesinurad","Alvesco",
|
151 |
+
"Darifenacin","Klor-Con","Glycerin","Tekturna HCT","Malathion","Ginseng","Edecrin","Gabarone","Ziac","Levorphanol","Racepinephrine",
|
152 |
+
"Mucinex Fast-Max Severe Congestion & Cough","B & O Supprettes","Aromasin","Bupivacaine liposome","Artane","Slow Fe","Gamunex","Valturna",
|
153 |
+
"Choline salicylate / magnesium salicylate","Dalmane","Vitamin D3","Tri-Estarylla","Edarbi","Lactic acid","Felodipine","Enalapril",
|
154 |
+
"Mestranol / norethindrone","Hydrocortisone / neomycin / polymyxin b","Gentian violet","TheraTears","Inapsine","Marinol","Magnesium aspartate",
|
155 |
+
"MG217 Medicated Tar","Rytary","Tolectin DS","Orudis","Nystop","Aggrenox","Tenofovir","Disalcid","Ferrous fumarate / iron polysaccharide",
|
156 |
+
"Metaproterenol","Dutasteride","Iressa","Chlorpheniramine / dextromethorphan / phenylephrine","Doans Pills Extra Strength",
|
157 |
+
"Saccharomyces boulardii lyo","Vitafol Ultra","Atrovent Nasal","Quillivant XR","Zanamivir","Dutasteride / tamsulosin","Diflorasone",
|
158 |
+
"Magnesium sulfate","Claritin-D 12 Hour","Lupron Depot-PED","Carbamide peroxide",
|
159 |
+
"Hyoscyamine / methenamine / methylene blue / phenyl salicylate / sodium biphosphate","Difluprednate","Dextromethorphan / guaifenesin / pseudoephedrine",
|
160 |
+
"Nizatidine","Condylox","Travatan","Sandostatin LAR Depot","Icatibant","Collagenase clostridium histolyticum","Cardura XL",
|
161 |
+
"Medrol Dosepak","Oxaydo","Amlodipine / telmisartan","Combivir","Berinert","Benzoyl peroxide","Adipost","Perindopril","Vibramycin",
|
162 |
+
"Tryptophan","Axert","Augmentin XR","Cisapride","Coricidin HBP Cough & Cold","Robitussin Cough + Chest Congestion DM",
|
163 |
+
"Meningococcal conjugate vaccine","Acetaminophen / aspirin","Tinzaparin","Triptorelin","Dallergy","Methamphetamine","Fludrocortisone",
|
164 |
+
"Chondroitin / glucosamine / methylsulfonylmethane","Relenza","Prevalite","Insulin aspart","Nafcillin","Arformoterol","SMZ-TMP DS","Acnex",
|
165 |
+
"Onexton","Ginger","Doripenem","Lidocaine Viscous","Felbamate","DesOwen","Ethmozine","Epogen","Depo-Provera Contraceptive","Mepolizumab",
|
166 |
+
"Ilevro","Acetaminophen / chlorpheniramine","Prolensa","Revatio","Hydrochlorothiazide / telmisartan","Acetaminophen / caffeine / isometheptene mucate",
|
167 |
+
"Viread","Maxaron Forte","Premarin Vaginal","Hexachlorophene","Vigamox","Sevelamer","Stelazine","Guaifenesin / phenylephrine",
|
168 |
+
"Magaldrate / simethicone","Fluphenazine","Vanoxide-HC","Nimodipine","Selsun Blue","Nizoral","Aspirin / oxycodone","Zarontin","Cefzil",
|
169 |
+
"Sucroferric oxyhydroxide","Iloperidone","Systane Ultra","Salagen","Sprix","Ogestrel-28","Lariam","Coumadin","Nembutal Sodium",
|
170 |
+
"Metoprolol Tartrate","Femcon Fe","Androderm","Isentress","Drixoral Decongestant Non-Drowsy","Saw palmetto","Elidel","Entacapone",
|
171 |
+
"Tylenol Cold","Zegerid OTC","Ex-Lax Regular Strength Pills","Kalydeco","Zelapar","Cromolyn","Kyprolis","Acarbose",
|
172 |
+
"Acetaminophen / caffeine / magnesium salicylate","Chlor-Trimeton","Forfivo XL","Vitamin B2","Symax Duotab","Azelex","Degarelix",
|
173 |
+
"Eylea","Westhroid","Mucomyst-10","Nutropin","Cordran Tape","Locoid Lipocream","Everolimus","Epzicom","Prandin","Alahist LQ",
|
174 |
+
"Oxtellar XR","Trezix","Gynazole-1","Anaprox","Olysio","Tylenol Allergy Multi-Symptom Nighttime","Doxidan Tablet","Xgeva","Fosinopril",
|
175 |
+
"Emend","Terazol 3","Nostrilla","Reprexain","Arava","Opcicon One-Step","Fenugreek","Parafon Forte DSC","Vagistat-1","Lovastatin / niacin",
|
176 |
+
"Vienva","Spinosad","Revia","Tykerb","Zovia 1 / 35","Sodium ferric gluconate complex","Ritalin LA","Caffeine / ergotamine","Vasotec",
|
177 |
+
"Arnuity Ellipta","Nateglinide","Magnacet","Hyzaar","Solaraze","Feosol Original","Capzasin-P","Anucort-HC","Guaifenesin / hydrocodone",
|
178 |
+
"Excedrin Tension Headache","ActoPlus Met","Actiq","Belladonna / opium","Triamterene","Konsyl","Miacalcin Nasal","Zegerid",
|
179 |
+
"Soma Compound with Codeine","Cinacalcet","Prosom","Butabarbital","Osphena","Flovent HFA","Prezista","Testopel","Evening Primrose Oil",
|
180 |
+
"Promethazine DM","Pneumococcal 23-polyvalent vaccine","Noroxin","Simethicone","Azurette","Somatropin","Vanspar","Egrifta",
|
181 |
+
"Aspirin / butalbital / caffeine / codeine","Apidra","Levacet","Dolobid","Solarcaine Burn Relief","Dasetta 7 / 7 / 7","Aliskiren",
|
182 |
+
"TriLyte","Tilmanocept","ClearLax","Imodium","Carbinoxamine","Excedrin Quick Tab","X-Viate","Bioflavonoids / zinc glycinate","Glucotrol","Abstral",
|
183 |
+
"Topicort","TriNessa Lo","Clocortolone","Zirgan","GaviLyte-C","Didrex","Doribax","Aristospan","Axid AR","Azopt","PEG-3350 with Electolytes",
|
184 |
+
"Naftifine","Prozac Weekly","Dextromethorphan / promethazine","Silver nitrate","Novolin 70 / 30","Ventolin","Disopyramide","WP Thyroid",
|
185 |
+
"Chloromycetin","Felbatol","Xopenex HFA","Insulin isophane / insulin regular","Norel SR","Coreg CR","Miglitol","Nplate","Advicor","Unasyn",
|
186 |
+
"Ethambutol","Ozurdex","Vosol HC","Neo-Synephrine Nasal","Chlorpheniramine / hydrocodone / phenylephrine","Brodalumab","Megace ES","Cetuximab",
|
187 |
+
"Rifampin","Kerydin","Tylenol 8 Hour","Dorzolamide / timolol","Odefsey","Darunavir","Atelvia","Danocrine","Junel 1 / 20","Aristocort A",
|
188 |
+
"Chlorthalidone","Novolog","Calmoseptine","Decadron","Bicillin L-A","Daypro","Umeclidinium","Cylert","Acetic acid / hydrocortisone","Generlac",
|
189 |
+
"Carbidopa / entacapone / levodopa","Cardura","Bimatoprost","Olux","Pacerone","Enjuvia","Afrin 4 Hour Extra Moisturizing","Colyte",
|
190 |
+
"Atropine / difenoxin","Proctosol-HC","Acular LS","Remeron SolTab","Kionex","Arcalyst","Iron polysaccharide","Ornex","Pentazocine","Trelstar",
|
191 |
+
"Emoquette","Alprazolam Intensol","Lumigan","Norepinephrine","Tears Again","Luvox CR","Vicodin HP","Prinivil","Nitrolingual Pumpspray",
|
192 |
+
"Benztropine","Pemetrexed","Pulmozyme","ConZip","Methimazole","Children's Claritin Allergy","Saxagliptin","Glyxambi","Caltrate 600+D","Zantac",
|
193 |
+
"Potassium citrate","Nikki","Children's Motrin","Migergot","Calcitonin","Natesto","Ribasphere","Unisom SleepGels","Capzasin",
|
194 |
+
"Hydrocodone / pseudoephedrine","Olodaterol","Femring","Dyazide","Amoxil","Carboplatin","Lapatinib","Tri-Lo-Marzia","Sulindac",
|
195 |
+
"Travatan Z","Acuvail","Amethia Lo","Hydroxyamphetamine / tropicamide","Capsaicin / menthol / methyl salicylate","Erythrocin","Mebaral",
|
196 |
+
"Sarna Sensitive","Risperdal Consta","E.E.S.-400","Hydroxocobalamin","Sipuleucel-T","Acitretin","Estratest H.S.","Tolak","Bethanechol",
|
197 |
+
"Piperacillin / tazobactam","Taxol","Deltasone","Oxaprozin","Sandostatin","Claritin","Bupivacaine",
|
198 |
+
"Chlorpheniramine / methscopolamine / pseudoephedrine","Fluoride","AmLactin","Depo-Medrol","Pexeva","Novantrone","Nuvessa","Griseofulvin",
|
199 |
+
"Antihemophilic factor","Rosiglitazone","Bosutinib","Dapagliflozin / metformin","Pyrithione zinc","Tiagabine","Estrace","Norgesic","Dilaudid-HP",
|
200 |
+
"Lamisil AT","Alka-Seltzer Plus Cold","Aspirin / carisoprodol / codeine","Zestoretic","Eletone","Lacrisert","Flonase Sensimist","Zebeta",
|
201 |
+
"Cefepime","Primatene","Rajani","Ivacaftor","Norpace CR","Flurbiprofen","Antara","Opdivo","Doxorubicin","Edoxaban","Mycophenolic acid","Peridex",
|
202 |
+
"Septra","Xalatan","Ribavirin","Eskalith","Deoxycholic acid","Rydapt","Procyclidine","Patanol","Torsemide","Myobloc","Gris-PEG","Halfan",
|
203 |
+
"Lonox","Rythmol SR","Cyclafem 7 / 7 / 7","Luxiq","KneeRelief","CamreseLo","Avalide","Striverdi Respimat","Phenylephrine / pramoxine",
|
204 |
+
"Cortizone-10","Capecitabine","Selexipag","Aluminum hydroxide / magnesium hydroxide / simethicone","Kemadrin","Esterified estrogens",
|
205 |
+
"Ascorbic acid","Rogaine Men's Extra Strength","Plegridy","Zolpimist","Zorvolex","Junel Fe 24","Niacin / simvastatin",
|
206 |
+
"Children's Dimetapp Decongestant Infant","Furadantin","Omnaris","Dextromethorphan / phenylephrine / pyrilamine","Sublimaze",
|
207 |
+
"Rho (d) immune globulin","Yellow fever vaccine","Oxydose","Vectibix","Slo-Niacin","Bismuth subgallate","Renvela","Vospire ER","Caziant",
|
208 |
+
"Humalog KwikPen","Pentoxifylline","depo-subQ provera 104","Ceritinib","Diphenhydramine / ibuprofen","Citrate of Magnesia","Xeloda","Venofer",
|
209 |
+
"Coricidin HBP Cold & Flu","Uroxatral","Cefditoren","RadiaPlexRx","Zantryl","NovoLog Mix 70 / 30","Asthmanefrin","Lymphoseek","Prometrium",
|
210 |
+
"Ceftibuten","Miltown","Allegra-D 12 Hour","Orajel","Maxifed DM","SalivaMAX","Propecia","Glucose","Tribenzor","Rythmol","Tev-Tropin","Cyclessa",
|
211 |
+
"Epiduo Forte","Lamivudine / zidovudine","Cortef","Trilisate","Kerafoam","Latisse","Isoproterenol","Factive","Amikacin","Senokot S",
|
212 |
+
"Calcium acetate","Cyclizine","Jakafi","Xeomin","BenzEFoam","Rosac","Coagulation factor ix","Olodaterol / tiotropium","Flagyl IV","Colace",
|
213 |
+
"Ferrous gluconate","Halaven","Arixtra","Kaletra","Carmol 20","Moxeza","Navane","Rowasa","Motofen","Tyvaso","Apokyn","Sinequan","Fosamax",
|
214 |
+
"Lovaza","Symlin","Urso","Prevident 5000 Plus","Salofalk","Vantin","Vicks Sinex 12-Hour Decongestant Nasal Spray","Risperdal M-Tab","Calan SR",
|
215 |
+
"Mimvey","Rezira","AbobotulinumtoxinA","Brivaracetam","Stimate","Sterapred DS","Divigel","Axid","Tasimelteon","Cyklokapron",
|
216 |
+
"Influenza virus vaccine, live, trivalent","Accolate","Enfuvirtide","Pegloticase","Florinef","Immune globulin intravenous","Nortrel 7 / 7 / 7",
|
217 |
+
"Pletal","Mevacor","Zemaira","Menopur","Ritonavir","Adoxa","Levocarnitine","Methylin ER","Aspirin / caffeine","Feen-A-Mint","Coal tar","Eldepryl",
|
218 |
+
"ZzzQuil","Temodar","Succinylcholine","Aliskiren / hydrochlorothiazide","Hydrochlorothiazide / irbesartan","Pemoline","Triple Antibiotic","Zaditor",
|
219 |
+
"Pegaptanib","Afinitor","FiberCon","Cobicistat / darunavir","Calamine","Humalog","Dermatop","Pramlintide","Acetaminophen / phenylephrine","CoQ10",
|
220 |
+
"Atacand","H.P. Acthar Gel","Naftin","Rozex","Blistex","Lactase","Meprobamate","Zecuity","Empagliflozin / metformin","Allergy DN PE","Guarana",
|
221 |
+
"Maprotiline","FluMist",
|