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