starting AnalyzerTest

This commit is contained in:
frankknoll
2023-10-09 11:18:04 +02:00
parent ee381d0757
commit 8aa743a1e6
4 changed files with 43 additions and 0 deletions

View 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]