starting AnalyzerTest
This commit is contained in:
9
src/SymptomsCausedByVaccines/Analyzer.py
Normal file
9
src/SymptomsCausedByVaccines/Analyzer.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import pandas as pd
|
||||
|
||||
class Analyzer:
|
||||
|
||||
def __init__(self, symptomByVaccine: pd.DataFrame):
|
||||
self.symptomByVaccine = symptomByVaccine
|
||||
|
||||
def getSymptomsForVaccine(self, vaxType):
|
||||
return self.symptomByVaccine.loc[vaxType]
|
||||
Reference in New Issue
Block a user