Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -80,7 +80,7 @@ with col1:
|
|
80 |
with col2:
|
81 |
if split_var1 == 'Slate Matchups':
|
82 |
display_table = matchups
|
83 |
-
st.dataframe(display_table
|
84 |
st.download_button(
|
85 |
label="Export Matchups",
|
86 |
data=convert_df_to_csv(display_table),
|
@@ -89,7 +89,7 @@ with col2:
|
|
89 |
)
|
90 |
elif split_var1 == 'Line Marketshares':
|
91 |
display_table = overall_ms
|
92 |
-
st.dataframe(display_table
|
93 |
st.download_button(
|
94 |
label="Export Marketshares",
|
95 |
data=convert_df_to_csv(display_table),
|
|
|
80 |
with col2:
|
81 |
if split_var1 == 'Slate Matchups':
|
82 |
display_table = matchups
|
83 |
+
st.dataframe(display_table, use_container_width = True)
|
84 |
st.download_button(
|
85 |
label="Export Matchups",
|
86 |
data=convert_df_to_csv(display_table),
|
|
|
89 |
)
|
90 |
elif split_var1 == 'Line Marketshares':
|
91 |
display_table = overall_ms
|
92 |
+
st.dataframe(display_table, use_container_width = True)
|
93 |
st.download_button(
|
94 |
label="Export Marketshares",
|
95 |
data=convert_df_to_csv(display_table),
|