Tyler Burns commited on
Commit
bac21e8
·
1 Parent(s): ed545e7

removed umap1 and umap2 for good

Browse files
Files changed (2) hide show
  1. app.py +4 -4
  2. flycheck_app.py +4 -4
app.py CHANGED
@@ -80,6 +80,9 @@ dat['body'] = [re.sub('<br>', ' ', i) for i in dat['body']]
80
  # Instructions
81
  st.caption('Click on the table and press ctrl+f (or command+f for mac) to search it')
82
 
 
 
 
83
  # Make the link clickable
84
  # pandas display options
85
  pd.set_option('display.max_colwidth', -1)
@@ -91,8 +94,5 @@ dat['href'] = dat['href'].apply(make_clickable, args = ('Click here',))
91
 
92
  st.write(dat.to_html(escape = False), unsafe_allow_html = True)
93
 
94
- # remove columns umap1 and umap2 from dat
95
- dat = dat.drop(columns=['umap1', 'umap2'])
96
-
97
  # Place a table under the plot
98
- st.dataframe(dat)
 
80
  # Instructions
81
  st.caption('Click on the table and press ctrl+f (or command+f for mac) to search it')
82
 
83
+ # remove columns umap1 and umap2 from dat
84
+ dat = dat.drop(columns=['umap1', 'umap2'])
85
+
86
  # Make the link clickable
87
  # pandas display options
88
  pd.set_option('display.max_colwidth', -1)
 
94
 
95
  st.write(dat.to_html(escape = False), unsafe_allow_html = True)
96
 
 
 
 
97
  # Place a table under the plot
98
+ # st.dataframe(dat)
flycheck_app.py CHANGED
@@ -80,6 +80,9 @@ dat['body'] = [re.sub('<br>', ' ', i) for i in dat['body']]
80
  # Instructions
81
  st.caption('Click on the table and press ctrl+f (or command+f for mac) to search it')
82
 
 
 
 
83
  # Make the link clickable
84
  # pandas display options
85
  pd.set_option('display.max_colwidth', -1)
@@ -91,8 +94,5 @@ dat['href'] = dat['href'].apply(make_clickable, args = ('Click here',))
91
 
92
  st.write(dat.to_html(escape = False), unsafe_allow_html = True)
93
 
94
- # remove columns umap1 and umap2 from dat
95
- dat = dat.drop(columns=['umap1', 'umap2'])
96
-
97
  # Place a table under the plot
98
- st.dataframe(dat)
 
80
  # Instructions
81
  st.caption('Click on the table and press ctrl+f (or command+f for mac) to search it')
82
 
83
+ # remove columns umap1 and umap2 from dat
84
+ dat = dat.drop(columns=['umap1', 'umap2'])
85
+
86
  # Make the link clickable
87
  # pandas display options
88
  pd.set_option('display.max_colwidth', -1)
 
94
 
95
  st.write(dat.to_html(escape = False), unsafe_allow_html = True)
96
 
 
 
 
97
  # Place a table under the plot
98
+ # st.dataframe(dat)