Update app.py
Browse files
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 |
-
|
|
|
|
|
|
| 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)
|