Skip to content

Latest commit

 

History

History
868 lines (832 loc) · 46.8 KB

00_initial_exploration.md

File metadata and controls

868 lines (832 loc) · 46.8 KB

Google Symptoms Dataset

Addison

In this notebook, we look at California data in order to obtain a general impression of the dataset.

Temporal availability

Data is available at a daily resolution, starting on January 1, 2020. Google also provides weekly rollups every Monday, starting on January 6, 2020. The weekly rollups are useful because the increase in sample size diminishes the effect of the noise added for differential privacy; or in circumstances may allow us obtain information in regions where data is too sparse to be reported at a consistent daily resolution.

Daily availability:

print(head(unique(ca_daily_df$date)))
## [1] "2020-01-01" "2020-01-02" "2020-01-03" "2020-01-04" "2020-01-05"
## [6] "2020-01-06"
print(tail(unique(ca_daily_df$date)))
## [1] "2020-08-25" "2020-08-26" "2020-08-27" "2020-08-28" "2020-08-29"
## [6] "2020-08-30"
print(length(unique(ca_daily_df$date)))
## [1] 243

Weekly availability:

print(unique(ca_weekly_df$date))
##  [1] "2020-08-10" "2020-08-17" "2020-08-24" "2020-01-06" "2020-01-13"
##  [6] "2020-01-20" "2020-01-27" "2020-02-03" "2020-02-10" "2020-02-17"
## [11] "2020-02-24" "2020-03-02" "2020-03-09" "2020-03-16" "2020-03-23"
## [16] "2020-03-30" "2020-04-06" "2020-04-13" "2020-04-20" "2020-04-27"
## [21] "2020-05-04" "2020-05-11" "2020-05-18" "2020-05-25" "2020-06-01"
## [26] "2020-06-08" "2020-06-15" "2020-06-22" "2020-06-29" "2020-07-06"
## [31] "2020-07-13" "2020-07-20" "2020-07-27" "2020-08-03"

Spatial availability

Data is available at the county level, which is an improvement upon our original Google Health Trends signal. However, there are varying degrees of missingness in the data, in line with Google’s standards for not reporting data when the counts are too small, in order to protect users’ privacy.

print(unique(ca_daily_df$open_covid_region_code))
##  [1] "US-CA"       "US-CA-06001" "US-CA-06003" "US-CA-06005" "US-CA-06007"
##  [6] "US-CA-06009" "US-CA-06011" "US-CA-06013" "US-CA-06015" "US-CA-06017"
## [11] "US-CA-06019" "US-CA-06021" "US-CA-06023" "US-CA-06025" "US-CA-06027"
## [16] "US-CA-06029" "US-CA-06031" "US-CA-06033" "US-CA-06035" "US-CA-06037"
## [21] "US-CA-06039" "US-CA-06041" "US-CA-06043" "US-CA-06045" "US-CA-06047"
## [26] "US-CA-06049" "US-CA-06051" "US-CA-06053" "US-CA-06055" "US-CA-06057"
## [31] "US-CA-06059" "US-CA-06061" "US-CA-06063" "US-CA-06065" "US-CA-06067"
## [36] "US-CA-06069" "US-CA-06071" "US-CA-06073" "US-CA-06075" "US-CA-06077"
## [41] "US-CA-06079" "US-CA-06081" "US-CA-06083" "US-CA-06085" "US-CA-06087"
## [46] "US-CA-06089" "US-CA-06091" "US-CA-06093" "US-CA-06095" "US-CA-06097"
## [51] "US-CA-06099" "US-CA-06101" "US-CA-06103" "US-CA-06105" "US-CA-06107"
## [56] "US-CA-06109" "US-CA-06111" "US-CA-06113" "US-CA-06115"

Symptom availability

The dataset provides normalized search volumes for 422 distinct “symptoms”. Note, however, that one search may count towards multiple symptoms [citation needed, but I read this in their documentation]. The normalization is a linear scaling such that (TODO – but the info about this is in their PDF).

symptom_cols = colnames(ca_daily_df)[
                  str_detect(colnames(ca_daily_df), 'symptom:')]
symptom_names = str_replace(symptom_cols, fixed('symptom:'), '')

Although there are hundreds of topics included, note that neither covid nor corona is a substring in any term.

sum(str_detect(symptom_names, fixed('covid', ignore_case=TRUE)))
## [1] 0
sum(str_detect(symptom_names, fixed('corona', ignore_case=TRUE)))
## [1] 0

The large number of symptoms for which data is provided spans those that are availability almost every day to those availabile on amount 10% of days. If my understanding is correct, we can think of data availability as roughly corresponding to whether search incidence exceeds a certain minimum threshold.

Symptoms by degree of availability

Because 422 topics are too many to parse simultaneously, I organize them based on their availability (1 - missingness) level, starting on March 1, 2020 (a soft start point for the coronavirus pandemic in the United States).

for (idx in 9:0) {
  cat(sprintf('Symptoms that reported data on %d%% to %d%% of days:',
              idx*10, (idx+1)*10), '\n')
  print(names(availability_vector[
          (availability_vector >= idx/10)
          &(availability_vector <= (idx+1)/10)]))
  cat('\n')
}
## Symptoms that reported data on 90% to 100% of days: 
## [1] "Acne"        "Allergy"     "Anxiety"     "Common cold" "Diabetes"   
## [6] "Infection"   "Itch"        "Pain"        "Skin rash"  
## 
## Symptoms that reported data on 80% to 90% of days: 
##  [1] "Abdominal pain"                  "Alcoholism"                     
##  [3] "Arthritis"                       "Back pain"                      
##  [5] "Bleeding"                        "Cough"                          
##  [7] "Depression"                      "Diarrhea"                       
##  [9] "Fatigue"                         "Fever"                          
## [11] "Gastroesophageal reflux disease" "Hair loss"                      
## [13] "Headache"                        "Hypertension"                   
## [15] "Inflammation"                    "Major depressive disorder"      
## [17] "Migraine"                        "Obesity"                        
## [19] "Skin condition"                  "Swelling"                       
## [21] "Type 2 diabetes"                 "Urinary tract infection"        
## 
## Symptoms that reported data on 70% to 80% of days: 
##  [1] "Abdominal obesity"                       
##  [2] "Anemia"                                  
##  [3] "Asthma"                                  
##  [4] "Attention deficit hyperactivity disorder"
##  [5] "Bloating"                                
##  [6] "Bone fracture"                           
##  [7] "Burn"                                    
##  [8] "Candidiasis"                             
##  [9] "Constipation"                            
## [10] "Cramp"                                   
## [11] "Dementia"                                
## [12] "Dermatitis"                              
## [13] "Epilepsy"                                
## [14] "Erectile dysfunction"                    
## [15] "Flatulence"                              
## [16] "Hay fever"                               
## [17] "Heartburn"                               
## [18] "Insomnia"                                
## [19] "Low back pain"                           
## [20] "Myocardial infarction"                   
## [21] "Nausea"                                  
## [22] "Paresthesia"                             
## [23] "Perspiration"                            
## [24] "Scar"                                    
## [25] "Sleep disorder"                          
## [26] "Stroke"                                  
## [27] "Vaginal discharge"                       
## [28] "Vomiting"                                
## [29] "Weight gain"                             
## [30] "Xeroderma"                               
## 
## Symptoms that reported data on 60% to 70% of days: 
##  [1] "Asperger syndrome"            "Autoimmune disease"          
##  [3] "Bacterial vaginosis"          "Boil"                        
##  [5] "Bruise"                       "Canker sore"                 
##  [7] "Carpal tunnel syndrome"       "Chest pain"                  
##  [9] "Chronic pain"                 "Dandruff"                    
## [11] "Dizziness"                    "Dysmenorrhea"                
## [13] "Edema"                        "Generalized anxiety disorder"
## [15] "Genital wart"                 "Gout"                        
## [17] "Heart arrhythmia"             "Hemorrhoids"                 
## [19] "Hives"                        "Hypercholesterolemia"        
## [21] "Hyperglycemia"                "Hyperthyroidism"             
## [23] "Hypotension"                  "Hypothyroidism"              
## [25] "Implantation bleeding"        "Indigestion"                 
## [27] "Inflammatory bowel disease"   "Iron deficiency"             
## [29] "Kidney failure"               "Kidney stone"                
## [31] "Knee Pain"                    "Lesion"                      
## [33] "Mood disorder"                "Morning sickness"            
## [35] "Nasal congestion"             "Neck pain"                   
## [37] "Otitis"                       "Panic attack"                
## [39] "Pneumonia"                    "Podalgia"                    
## [41] "Psychosis"                    "Sciatica"                    
## [43] "Shortness of breath"          "Sinusitis"                   
## [45] "Skin ulcer"                   "Sleep apnea"                 
## [47] "Snoring"                      "Sore throat"                 
## [49] "Swollen lymph nodes"          "Toothache"                   
## [51] "Tumor"                        "Urinary incontinence"        
## [53] "Uterine contraction"          "Vertigo"                     
## [55] "Wart"                        
## 
## Symptoms that reported data on 50% to 60% of days: 
##  [1] "Angina pectoris"             "Bradycardia"                
##  [3] "Breakthrough bleeding"       "Cirrhosis"                  
##  [5] "Compulsive behavior"         "Conjunctivitis"             
##  [7] "Dry eye syndrome"            "Ear pain"                   
##  [9] "Erythema"                    "Fasciculation"              
## [11] "Fibromyalgia"                "Food intolerance"           
## [13] "Halitosis"                   "Hepatitis"                  
## [15] "Hiccup"                      "Hip pain"                   
## [17] "Hot flash"                   "Hyperkalemia"               
## [19] "Hyperpigmentation"           "Hypoglycemia"               
## [21] "Hypogonadism"                "Hypokalemia"                
## [23] "Ingrown hair"                "Lactose intolerance"        
## [25] "Lightheadedness"             "Manic Disorder"             
## [27] "Menorrhagia"                 "Mouth ulcer"                
## [29] "Myalgia"                     "Oral candidiasis"           
## [31] "Osteoporosis"                "Otitis media"               
## [33] "Pelvic inflammatory disease" "Periodontal disease"        
## [35] "Periorbital puffiness"       "Peripheral neuropathy"      
## [37] "Phlegm"                      "Poor posture"               
## [39] "Prediabetes"                 "Pus"                        
## [41] "Restless legs syndrome"      "Sexual dysfunction"         
## [43] "Sharp pain"                  "Skin tag"                   
## [45] "Stretch marks"               "Swollen feet"               
## [47] "Syncope"                     "Tachycardia"                
## [49] "Tinnitus"                    "Tonsillitis"                
## [51] "Tremor"                      "Underweight"                
## [53] "Vaginitis"                  
## 
## Symptoms that reported data on 40% to 50% of days: 
##  [1] "Actinic keratosis"             "Amnesia"                      
##  [3] "Anaphylaxis"                   "Apnea"                        
##  [5] "Arthralgia"                    "Binge eating"                 
##  [7] "Blepharospasm"                 "Blood in stool"               
##  [9] "Blurred vision"                "Braxton Hicks contractions"   
## [11] "Breast pain"                   "Bronchitis"                   
## [13] "Bruxism"                       "Bunion"                       
## [15] "Cardiac arrest"                "Cataract"                     
## [17] "Chills"                        "Colitis"                      
## [19] "Coma"                          "Convulsion"                   
## [21] "Delayed onset muscle soreness" "Dentin hypersensitivity"      
## [23] "Desquamation"                  "Dysphagia"                    
## [25] "Eye strain"                    "Fatty liver disease"          
## [27] "Fibrillation"                  "Food craving"                 
## [29] "Frequent urination"            "Gingivitis"                   
## [31] "Guilt"                         "Hematoma"                     
## [33] "Hematuria"                     "Hyperthermia"                 
## [35] "Hypoxemia"                     "Impulsivity"                  
## [37] "Insulin resistance"            "Irregular menstruation"       
## [39] "Jaundice"                      "Leg cramps"                   
## [41] "Meningitis"                    "Middle back pain"             
## [43] "Night sweats"                  "Nodule"                       
## [45] "Nosebleed"                     "Otitis externa"               
## [47] "Palpitations"                  "Pulmonary hypertension"       
## [49] "Pyelonephritis"                "Radiculopathy"                
## [51] "Red eye"                       "Rhinitis"                     
## [53] "Rhinorrhea"                    "Rosacea"                      
## [55] "Scoliosis"                     "Seborrheic dermatitis"        
## [57] "Self-harm"                     "Shyness"                      
## [59] "Sleep deprivation"             "Strabismus"                   
## [61] "Suicidal ideation"             "Thrombocytopenia"             
## [63] "Tic"                           "Vaginal bleeding"             
## [65] "Varicose veins"                "Water retention"              
## [67] "Weakness"                      "Xerostomia"                   
## [69] "hyperhidrosis"                 "pancreatitis"                 
## 
## Symptoms that reported data on 30% to 40% of days: 
##  [1] "Acute bronchitis"              "Amblyopia"                    
##  [3] "Anal fissure"                  "Angioedema"                   
##  [5] "Aphasia"                       "Astigmatism"                  
##  [7] "Avoidant personality disorder" "Bell's palsy"                 
##  [9] "Biliary colic"                 "Blushing"                     
## [11] "Bowel obstruction"             "Chancre"                      
## [13] "Cheilitis"                     "Cluster headache"             
## [15] "Confusion"                     "Congenital heart defect"      
## [17] "Diabetic ketoacidosis"         "Dysphoria"                    
## [19] "Eczema"                        "Encephalitis"                 
## [21] "Epidermoid cyst"               "Erythema chronicum migrans"   
## [23] "Excessive daytime sleepiness"  "Floater"                      
## [25] "Folate deficiency"             "Hematochezia"                 
## [27] "Hypertriglyceridemia"          "Hypertrophy"                  
## [29] "Hyponatremia"                  "Hypoxia"                      
## [31] "Intermenstrual bleeding"       "Intracranial pressure"        
## [33] "Low-grade fever"               "Lymphedema"                   
## [35] "Melasma"                       "Melena"                       
## [37] "Milium"                        "Mood swing"                   
## [39] "Motion sickness"               "Muscle weakness"              
## [41] "Mydriasis"                     "Neonatal jaundice"            
## [43] "Nerve injury"                  "Neuralgia"                    
## [45] "Orthostatic hypotension"       "Pleural effusion"             
## [47] "Proteinuria"                   "Pruritus ani"                 
## [49] "Purpura"                       "Shivering"                    
## [51] "Stuttering"                    "Telangiectasia"               
## [53] "Testicular pain"               "Throat irritation"            
## [55] "Unconsciousness"               "Ventricular tachycardia"      
## [57] "Visual acuity"                 "Wheeze"                       
## [59] "Yawn"                         
## 
## Symptoms that reported data on 20% to 30% of days: 
##   [1] "Adrenal crisis"                           
##   [2] "Ageusia"                                  
##   [3] "Amenorrhea"                               
##   [4] "Anosmia"                                  
##   [5] "Ascites"                                  
##   [6] "Asphyxia"                                 
##   [7] "Ataxia"                                   
##   [8] "Atheroma"                                 
##   [9] "Auditory hallucination"                   
##  [10] "Balance disorder"                         
##  [11] "Beau's lines"                             
##  [12] "Bleeding on probing"                      
##  [13] "Bone tumor"                               
##  [14] "Burning mouth syndrome"                   
##  [15] "Cataplexy"                                
##  [16] "Chorea"                                   
##  [17] "Cleft lip and cleft palate"               
##  [18] "Clouding of consciousness"                
##  [19] "Compulsive hoarding"                      
##  [20] "Crepitus"                                 
##  [21] "Croup"                                    
##  [22] "Cyanosis"                                 
##  [23] "Depersonalization"                        
##  [24] "Developmental disability"                 
##  [25] "Dysgeusia"                                
##  [26] "Dyspareunia"                              
##  [27] "Dystonia"                                 
##  [28] "Dysuria"                                  
##  [29] "Encephalopathy"                           
##  [30] "Epiphora"                                 
##  [31] "Esophagitis"                              
##  [32] "Eye pain"                                 
##  [33] "Facial nerve paralysis"                   
##  [34] "Facial swelling"                          
##  [35] "Fecal incontinence"                       
##  [36] "Fibrocystic breast changes"               
##  [37] "Focal seizure"                            
##  [38] "Gastroparesis"                            
##  [39] "Generalized tonic–clonic seizure"         
##  [40] "Gingival recession"                       
##  [41] "Globus pharyngis"                         
##  [42] "Goitre"                                   
##  [43] "Grandiosity"                              
##  [44] "Granuloma"                                
##  [45] "Heart murmur"                             
##  [46] "Hemoptysis"                               
##  [47] "Hepatotoxicity"                           
##  [48] "Hydrocephalus"                            
##  [49] "Hypercalcaemia"                           
##  [50] "Hyperemesis gravidarum"                   
##  [51] "Hyperlipidemia"                           
##  [52] "Hypermobility"                            
##  [53] "Hypersomnia"                              
##  [54] "Hyperventilation"                         
##  [55] "Hypocalcaemia"                            
##  [56] "Hypochondriasis"                          
##  [57] "Hypomania"                                
##  [58] "Impetigo"                                 
##  [59] "Kyphosis"                                 
##  [60] "Leukorrhea"                               
##  [61] "Malabsorption"                            
##  [62] "Male infertility"                         
##  [63] "Mitral insufficiency"                     
##  [64] "Muscle atrophy"                           
##  [65] "Nasal polyp"                              
##  [66] "Neck mass"                                
##  [67] "Neutropenia"                              
##  [68] "Night terror"                             
##  [69] "Nocturnal enuresis"                       
##  [70] "Nystagmus"                                
##  [71] "Onychorrhexis"                            
##  [72] "Osteopenia"                               
##  [73] "Osteophyte"                               
##  [74] "Papule"                                   
##  [75] "Paranoia"                                 
##  [76] "Pericarditis"                             
##  [77] "Petechia"                                 
##  [78] "Photophobia"                              
##  [79] "Photopsia"                                
##  [80] "Pleurisy"                                 
##  [81] "Polycythemia"                             
##  [82] "Polyneuropathy"                           
##  [83] "Polyuria"                                 
##  [84] "Post-nasal drip"                          
##  [85] "Postural orthostatic tachycardia syndrome"
##  [86] "Ptosis"                                   
##  [87] "Rectal prolapse"                          
##  [88] "Renal colic"                              
##  [89] "Rheum"                                    
##  [90] "Round ligament pain"                      
##  [91] "Rumination"                               
##  [92] "Sensitivity to sound"                     
##  [93] "Spasticity"                               
##  [94] "Splenomegaly"                             
##  [95] "Sputum"                                   
##  [96] "Stomach rumble"                           
##  [97] "Subdural hematoma"                        
##  [98] "Tachypnea"                                
##  [99] "Tenderness"                               
## [100] "Thyroid nodule"                           
## [101] "Trichoptilosis"                           
## [102] "Upper respiratory tract infection"        
## [103] "Urethritis"                               
## [104] "Vasculitis"                               
## 
## Symptoms that reported data on 10% to 20% of days: 
##  [1] "Allergic conjunctivitis"  "Angular cheilitis"       
##  [3] "Aphonia"                  "Burning Chest Pain"      
##  [5] "Crackles"                 "Dysautonomia"            
##  [7] "Hemolysis"                "Hepatic encephalopathy"  
##  [9] "Hypercapnia"              "Laryngitis"              
## [11] "Myoclonus"                "Photodermatitis"         
## [13] "Polydipsia"               "Pulmonary edema"         
## [15] "Rectal pain"              "Shallow breathing"       
## [17] "Stridor"                  "Urinary urgency"         
## [19] "Ventricular fibrillation" "Viral pneumonia"         
## 
## Symptoms that reported data on 0% to 10% of days: 
## character(0)

All symptoms

Here we print the entire symptom list, ordered by the columns in Google’s dataset:

print(symptom_names)
##   [1] "Abdominal obesity"                        
##   [2] "Abdominal pain"                           
##   [3] "Acne"                                     
##   [4] "Actinic keratosis"                        
##   [5] "Acute bronchitis"                         
##   [6] "Adrenal crisis"                           
##   [7] "Ageusia"                                  
##   [8] "Alcoholism"                               
##   [9] "Allergic conjunctivitis"                  
##  [10] "Allergy"                                  
##  [11] "Amblyopia"                                
##  [12] "Amenorrhea"                               
##  [13] "Amnesia"                                  
##  [14] "Anal fissure"                             
##  [15] "Anaphylaxis"                              
##  [16] "Anemia"                                   
##  [17] "Angina pectoris"                          
##  [18] "Angioedema"                               
##  [19] "Angular cheilitis"                        
##  [20] "Anosmia"                                  
##  [21] "Anxiety"                                  
##  [22] "Aphasia"                                  
##  [23] "Aphonia"                                  
##  [24] "Apnea"                                    
##  [25] "Arthralgia"                               
##  [26] "Arthritis"                                
##  [27] "Ascites"                                  
##  [28] "Asperger syndrome"                        
##  [29] "Asphyxia"                                 
##  [30] "Asthma"                                   
##  [31] "Astigmatism"                              
##  [32] "Ataxia"                                   
##  [33] "Atheroma"                                 
##  [34] "Attention deficit hyperactivity disorder" 
##  [35] "Auditory hallucination"                   
##  [36] "Autoimmune disease"                       
##  [37] "Avoidant personality disorder"            
##  [38] "Back pain"                                
##  [39] "Bacterial vaginosis"                      
##  [40] "Balance disorder"                         
##  [41] "Beau's lines"                             
##  [42] "Bell's palsy"                             
##  [43] "Biliary colic"                            
##  [44] "Binge eating"                             
##  [45] "Bleeding"                                 
##  [46] "Bleeding on probing"                      
##  [47] "Blepharospasm"                            
##  [48] "Bloating"                                 
##  [49] "Blood in stool"                           
##  [50] "Blurred vision"                           
##  [51] "Blushing"                                 
##  [52] "Boil"                                     
##  [53] "Bone fracture"                            
##  [54] "Bone tumor"                               
##  [55] "Bowel obstruction"                        
##  [56] "Bradycardia"                              
##  [57] "Braxton Hicks contractions"               
##  [58] "Breakthrough bleeding"                    
##  [59] "Breast pain"                              
##  [60] "Bronchitis"                               
##  [61] "Bruise"                                   
##  [62] "Bruxism"                                  
##  [63] "Bunion"                                   
##  [64] "Burn"                                     
##  [65] "Burning Chest Pain"                       
##  [66] "Burning mouth syndrome"                   
##  [67] "Candidiasis"                              
##  [68] "Canker sore"                              
##  [69] "Cardiac arrest"                           
##  [70] "Carpal tunnel syndrome"                   
##  [71] "Cataplexy"                                
##  [72] "Cataract"                                 
##  [73] "Chancre"                                  
##  [74] "Cheilitis"                                
##  [75] "Chest pain"                               
##  [76] "Chills"                                   
##  [77] "Chorea"                                   
##  [78] "Chronic pain"                             
##  [79] "Cirrhosis"                                
##  [80] "Cleft lip and cleft palate"               
##  [81] "Clouding of consciousness"                
##  [82] "Cluster headache"                         
##  [83] "Colitis"                                  
##  [84] "Coma"                                     
##  [85] "Common cold"                              
##  [86] "Compulsive behavior"                      
##  [87] "Compulsive hoarding"                      
##  [88] "Confusion"                                
##  [89] "Congenital heart defect"                  
##  [90] "Conjunctivitis"                           
##  [91] "Constipation"                             
##  [92] "Convulsion"                               
##  [93] "Cough"                                    
##  [94] "Crackles"                                 
##  [95] "Cramp"                                    
##  [96] "Crepitus"                                 
##  [97] "Croup"                                    
##  [98] "Cyanosis"                                 
##  [99] "Dandruff"                                 
## [100] "Delayed onset muscle soreness"            
## [101] "Dementia"                                 
## [102] "Dentin hypersensitivity"                  
## [103] "Depersonalization"                        
## [104] "Depression"                               
## [105] "Dermatitis"                               
## [106] "Desquamation"                             
## [107] "Developmental disability"                 
## [108] "Diabetes"                                 
## [109] "Diabetic ketoacidosis"                    
## [110] "Diarrhea"                                 
## [111] "Dizziness"                                
## [112] "Dry eye syndrome"                         
## [113] "Dysautonomia"                             
## [114] "Dysgeusia"                                
## [115] "Dysmenorrhea"                             
## [116] "Dyspareunia"                              
## [117] "Dysphagia"                                
## [118] "Dysphoria"                                
## [119] "Dystonia"                                 
## [120] "Dysuria"                                  
## [121] "Ear pain"                                 
## [122] "Eczema"                                   
## [123] "Edema"                                    
## [124] "Encephalitis"                             
## [125] "Encephalopathy"                           
## [126] "Epidermoid cyst"                          
## [127] "Epilepsy"                                 
## [128] "Epiphora"                                 
## [129] "Erectile dysfunction"                     
## [130] "Erythema"                                 
## [131] "Erythema chronicum migrans"               
## [132] "Esophagitis"                              
## [133] "Excessive daytime sleepiness"             
## [134] "Eye pain"                                 
## [135] "Eye strain"                               
## [136] "Facial nerve paralysis"                   
## [137] "Facial swelling"                          
## [138] "Fasciculation"                            
## [139] "Fatigue"                                  
## [140] "Fatty liver disease"                      
## [141] "Fecal incontinence"                       
## [142] "Fever"                                    
## [143] "Fibrillation"                             
## [144] "Fibrocystic breast changes"               
## [145] "Fibromyalgia"                             
## [146] "Flatulence"                               
## [147] "Floater"                                  
## [148] "Focal seizure"                            
## [149] "Folate deficiency"                        
## [150] "Food craving"                             
## [151] "Food intolerance"                         
## [152] "Frequent urination"                       
## [153] "Gastroesophageal reflux disease"          
## [154] "Gastroparesis"                            
## [155] "Generalized anxiety disorder"             
## [156] "Generalized tonic–clonic seizure"         
## [157] "Genital wart"                             
## [158] "Gingival recession"                       
## [159] "Gingivitis"                               
## [160] "Globus pharyngis"                         
## [161] "Goitre"                                   
## [162] "Gout"                                     
## [163] "Grandiosity"                              
## [164] "Granuloma"                                
## [165] "Guilt"                                    
## [166] "Hair loss"                                
## [167] "Halitosis"                                
## [168] "Hay fever"                                
## [169] "Headache"                                 
## [170] "Heart arrhythmia"                         
## [171] "Heart murmur"                             
## [172] "Heartburn"                                
## [173] "Hematochezia"                             
## [174] "Hematoma"                                 
## [175] "Hematuria"                                
## [176] "Hemolysis"                                
## [177] "Hemoptysis"                               
## [178] "Hemorrhoids"                              
## [179] "Hepatic encephalopathy"                   
## [180] "Hepatitis"                                
## [181] "Hepatotoxicity"                           
## [182] "Hiccup"                                   
## [183] "Hip pain"                                 
## [184] "Hives"                                    
## [185] "Hot flash"                                
## [186] "Hydrocephalus"                            
## [187] "Hypercalcaemia"                           
## [188] "Hypercapnia"                              
## [189] "Hypercholesterolemia"                     
## [190] "Hyperemesis gravidarum"                   
## [191] "Hyperglycemia"                            
## [192] "Hyperkalemia"                             
## [193] "Hyperlipidemia"                           
## [194] "Hypermobility"                            
## [195] "Hyperpigmentation"                        
## [196] "Hypersomnia"                              
## [197] "Hypertension"                             
## [198] "Hyperthermia"                             
## [199] "Hyperthyroidism"                          
## [200] "Hypertriglyceridemia"                     
## [201] "Hypertrophy"                              
## [202] "Hyperventilation"                         
## [203] "Hypocalcaemia"                            
## [204] "Hypochondriasis"                          
## [205] "Hypoglycemia"                             
## [206] "Hypogonadism"                             
## [207] "Hypokalemia"                              
## [208] "Hypomania"                                
## [209] "Hyponatremia"                             
## [210] "Hypotension"                              
## [211] "Hypothyroidism"                           
## [212] "Hypoxemia"                                
## [213] "Hypoxia"                                  
## [214] "Impetigo"                                 
## [215] "Implantation bleeding"                    
## [216] "Impulsivity"                              
## [217] "Indigestion"                              
## [218] "Infection"                                
## [219] "Inflammation"                             
## [220] "Inflammatory bowel disease"               
## [221] "Ingrown hair"                             
## [222] "Insomnia"                                 
## [223] "Insulin resistance"                       
## [224] "Intermenstrual bleeding"                  
## [225] "Intracranial pressure"                    
## [226] "Iron deficiency"                          
## [227] "Irregular menstruation"                   
## [228] "Itch"                                     
## [229] "Jaundice"                                 
## [230] "Kidney failure"                           
## [231] "Kidney stone"                             
## [232] "Knee Pain"                                
## [233] "Kyphosis"                                 
## [234] "Lactose intolerance"                      
## [235] "Laryngitis"                               
## [236] "Leg cramps"                               
## [237] "Lesion"                                   
## [238] "Leukorrhea"                               
## [239] "Lightheadedness"                          
## [240] "Low back pain"                            
## [241] "Low-grade fever"                          
## [242] "Lymphedema"                               
## [243] "Major depressive disorder"                
## [244] "Malabsorption"                            
## [245] "Male infertility"                         
## [246] "Manic Disorder"                           
## [247] "Melasma"                                  
## [248] "Melena"                                   
## [249] "Meningitis"                               
## [250] "Menorrhagia"                              
## [251] "Middle back pain"                         
## [252] "Migraine"                                 
## [253] "Milium"                                   
## [254] "Mitral insufficiency"                     
## [255] "Mood disorder"                            
## [256] "Mood swing"                               
## [257] "Morning sickness"                         
## [258] "Motion sickness"                          
## [259] "Mouth ulcer"                              
## [260] "Muscle atrophy"                           
## [261] "Muscle weakness"                          
## [262] "Myalgia"                                  
## [263] "Mydriasis"                                
## [264] "Myocardial infarction"                    
## [265] "Myoclonus"                                
## [266] "Nasal congestion"                         
## [267] "Nasal polyp"                              
## [268] "Nausea"                                   
## [269] "Neck mass"                                
## [270] "Neck pain"                                
## [271] "Neonatal jaundice"                        
## [272] "Nerve injury"                             
## [273] "Neuralgia"                                
## [274] "Neutropenia"                              
## [275] "Night sweats"                             
## [276] "Night terror"                             
## [277] "Nocturnal enuresis"                       
## [278] "Nodule"                                   
## [279] "Nosebleed"                                
## [280] "Nystagmus"                                
## [281] "Obesity"                                  
## [282] "Onychorrhexis"                            
## [283] "Oral candidiasis"                         
## [284] "Orthostatic hypotension"                  
## [285] "Osteopenia"                               
## [286] "Osteophyte"                               
## [287] "Osteoporosis"                             
## [288] "Otitis"                                   
## [289] "Otitis externa"                           
## [290] "Otitis media"                             
## [291] "Pain"                                     
## [292] "Palpitations"                             
## [293] "Panic attack"                             
## [294] "Papule"                                   
## [295] "Paranoia"                                 
## [296] "Paresthesia"                              
## [297] "Pelvic inflammatory disease"              
## [298] "Pericarditis"                             
## [299] "Periodontal disease"                      
## [300] "Periorbital puffiness"                    
## [301] "Peripheral neuropathy"                    
## [302] "Perspiration"                             
## [303] "Petechia"                                 
## [304] "Phlegm"                                   
## [305] "Photodermatitis"                          
## [306] "Photophobia"                              
## [307] "Photopsia"                                
## [308] "Pleural effusion"                         
## [309] "Pleurisy"                                 
## [310] "Pneumonia"                                
## [311] "Podalgia"                                 
## [312] "Polycythemia"                             
## [313] "Polydipsia"                               
## [314] "Polyneuropathy"                           
## [315] "Polyuria"                                 
## [316] "Poor posture"                             
## [317] "Post-nasal drip"                          
## [318] "Postural orthostatic tachycardia syndrome"
## [319] "Prediabetes"                              
## [320] "Proteinuria"                              
## [321] "Pruritus ani"                             
## [322] "Psychosis"                                
## [323] "Ptosis"                                   
## [324] "Pulmonary edema"                          
## [325] "Pulmonary hypertension"                   
## [326] "Purpura"                                  
## [327] "Pus"                                      
## [328] "Pyelonephritis"                           
## [329] "Radiculopathy"                            
## [330] "Rectal pain"                              
## [331] "Rectal prolapse"                          
## [332] "Red eye"                                  
## [333] "Renal colic"                              
## [334] "Restless legs syndrome"                   
## [335] "Rheum"                                    
## [336] "Rhinitis"                                 
## [337] "Rhinorrhea"                               
## [338] "Rosacea"                                  
## [339] "Round ligament pain"                      
## [340] "Rumination"                               
## [341] "Scar"                                     
## [342] "Sciatica"                                 
## [343] "Scoliosis"                                
## [344] "Seborrheic dermatitis"                    
## [345] "Self-harm"                                
## [346] "Sensitivity to sound"                     
## [347] "Sexual dysfunction"                       
## [348] "Shallow breathing"                        
## [349] "Sharp pain"                               
## [350] "Shivering"                                
## [351] "Shortness of breath"                      
## [352] "Shyness"                                  
## [353] "Sinusitis"                                
## [354] "Skin condition"                           
## [355] "Skin rash"                                
## [356] "Skin tag"                                 
## [357] "Skin ulcer"                               
## [358] "Sleep apnea"                              
## [359] "Sleep deprivation"                        
## [360] "Sleep disorder"                           
## [361] "Snoring"                                  
## [362] "Sore throat"                              
## [363] "Spasticity"                               
## [364] "Splenomegaly"                             
## [365] "Sputum"                                   
## [366] "Stomach rumble"                           
## [367] "Strabismus"                               
## [368] "Stretch marks"                            
## [369] "Stridor"                                  
## [370] "Stroke"                                   
## [371] "Stuttering"                               
## [372] "Subdural hematoma"                        
## [373] "Suicidal ideation"                        
## [374] "Swelling"                                 
## [375] "Swollen feet"                             
## [376] "Swollen lymph nodes"                      
## [377] "Syncope"                                  
## [378] "Tachycardia"                              
## [379] "Tachypnea"                                
## [380] "Telangiectasia"                           
## [381] "Tenderness"                               
## [382] "Testicular pain"                          
## [383] "Throat irritation"                        
## [384] "Thrombocytopenia"                         
## [385] "Thyroid nodule"                           
## [386] "Tic"                                      
## [387] "Tinnitus"                                 
## [388] "Tonsillitis"                              
## [389] "Toothache"                                
## [390] "Tremor"                                   
## [391] "Trichoptilosis"                           
## [392] "Tumor"                                    
## [393] "Type 2 diabetes"                          
## [394] "Unconsciousness"                          
## [395] "Underweight"                              
## [396] "Upper respiratory tract infection"        
## [397] "Urethritis"                               
## [398] "Urinary incontinence"                     
## [399] "Urinary tract infection"                  
## [400] "Urinary urgency"                          
## [401] "Uterine contraction"                      
## [402] "Vaginal bleeding"                         
## [403] "Vaginal discharge"                        
## [404] "Vaginitis"                                
## [405] "Varicose veins"                           
## [406] "Vasculitis"                               
## [407] "Ventricular fibrillation"                 
## [408] "Ventricular tachycardia"                  
## [409] "Vertigo"                                  
## [410] "Viral pneumonia"                          
## [411] "Visual acuity"                            
## [412] "Vomiting"                                 
## [413] "Wart"                                     
## [414] "Water retention"                          
## [415] "Weakness"                                 
## [416] "Weight gain"                              
## [417] "Wheeze"                                   
## [418] "Xeroderma"                                
## [419] "Xerostomia"                               
## [420] "Yawn"                                     
## [421] "hyperhidrosis"                            
## [422] "pancreatitis"