Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ import gradio as gr
|
|
9 |
def MatchLOINC(name):
|
10 |
basedir = os.path.dirname(__file__)
|
11 |
data = pd.read_csv(f'LoincTableCore.csv')
|
12 |
-
swith=data.loc[data['COMPONENT'].str.contains(name, case=False)]
|
13 |
return swith
|
14 |
|
15 |
def MatchLOINCPanelsandForms(name):
|
|
|
9 |
def MatchLOINC(name):
|
10 |
basedir = os.path.dirname(__file__)
|
11 |
data = pd.read_csv(f'LoincTableCore.csv')
|
12 |
+
swith=data.loc[data['COMPONENT'].str.contains(name, case=False, na=False)]
|
13 |
return swith
|
14 |
|
15 |
def MatchLOINCPanelsandForms(name):
|