awacke1 commited on
Commit
cd2ce8e
·
1 Parent(s): 41752df

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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