rhea2809 commited on
Commit
03fa41d
·
1 Parent(s): e996467

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -97,4 +97,5 @@ st.markdown(hide_st_style, unsafe_allow_html=True)
97
  df = pd.read_csv(
98
  "https://docs.google.com/spreadsheets/d/1KYrTSZZbjEO5WDEG-6bsqkZHoZ3G1FGmTcTttuZpJOg/gviz/tq?tqx=out:csv&sheet=memd"
99
  )
100
- st.dataframe(df.dropna(axis=1, how='all'), hide_index=True,use_container_width=True)
 
 
97
  df = pd.read_csv(
98
  "https://docs.google.com/spreadsheets/d/1KYrTSZZbjEO5WDEG-6bsqkZHoZ3G1FGmTcTttuZpJOg/gviz/tq?tqx=out:csv&sheet=memd"
99
  )
100
+ df=df.dropna(axis=1, how='all')
101
+ st.dataframe(filter_dataframe(df), hide_index=True,use_container_width=True)