Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1101,7 +1101,7 @@ with tab2:
|
|
1101 |
)
|
1102 |
|
1103 |
with st.container():
|
1104 |
-
tab1, tab2, tab3, tab4
|
1105 |
with tab1:
|
1106 |
if 'player_freq' in st.session_state:
|
1107 |
st.dataframe(st.session_state.player_freq.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(freq_format, precision=2), use_container_width = True)
|
|
|
1101 |
)
|
1102 |
|
1103 |
with st.container():
|
1104 |
+
tab1, tab2, tab3, tab4 = st.tabs(['Overall Exposures', 'QB Exposures', 'RB Exposures', 'WR Exposures'])
|
1105 |
with tab1:
|
1106 |
if 'player_freq' in st.session_state:
|
1107 |
st.dataframe(st.session_state.player_freq.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(freq_format, precision=2), use_container_width = True)
|