Spaces:
Sleeping
Sleeping
James McCool
commited on
Commit
·
86aaff4
1
Parent(s):
87c8996
Enhance dataframe sorting and gradient coloring for pitchers and hitters
Browse files
app.py
CHANGED
@@ -82,7 +82,6 @@ with tab1:
|
|
82 |
disp_frame = raw_frame[['Team', '2B', 'HR', 'SB', 'P_SO', 'P_H', 'P_R', 'P_HR', 'P_BB', 'LY Added', 'Added', 'LY Adj Wins', 'Adj Wins', 'Vegas', 'Proj wins', 'Diff']]
|
83 |
disp_frame = disp_frame.sort_values(by='Proj wins', ascending=False)
|
84 |
|
85 |
-
|
86 |
st.dataframe(disp_frame.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(precision=2), height = 1000, use_container_width = True)
|
87 |
|
88 |
st.download_button(
|
@@ -110,7 +109,9 @@ with tab2:
|
|
110 |
'Walk%', 'Walks', 'Runs%', 'Runs', 'ERA', 'Wins', 'Quality_starts', 'ADP', 'UD_fpts', 'DK_fpts']]
|
111 |
disp_frame_sp = working_data[['Name', 'Team', 'TBF', 'True_AVG', 'Hits', 'Singles', 'Doubles', 'Homeruns', 'Strikeouts',
|
112 |
'Walks', 'Runs', 'ERA', 'Wins', 'Quality_starts', 'ADP', 'UD_fpts', 'DK_fpts']]
|
|
|
113 |
st.dataframe(disp_frame_sp.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(precision=2), height = 1000, use_container_width = True)
|
|
|
114 |
|
115 |
st.download_button(
|
116 |
label="Export Pitcher Projections",
|
@@ -137,7 +138,8 @@ with tab3:
|
|
137 |
'xHR%', 'Homeruns', 'Runs%', 'Runs', 'RBI%', 'RBI', 'Steal%', 'Stolen_bases', 'ADP', 'UD_fpts', 'DK_fpts']]
|
138 |
disp_frame_h = working_data[['Name', 'Team', 'PA', 'Walks', 'xHits', 'Singles', 'Doubles',
|
139 |
'Homeruns', 'Runs', 'RBI', 'Stolen_bases', 'ADP', 'UD_fpts', 'DK_fpts']]
|
140 |
-
|
|
|
141 |
|
142 |
st.download_button(
|
143 |
label="Export Hitter Projections",
|
|
|
82 |
disp_frame = raw_frame[['Team', '2B', 'HR', 'SB', 'P_SO', 'P_H', 'P_R', 'P_HR', 'P_BB', 'LY Added', 'Added', 'LY Adj Wins', 'Adj Wins', 'Vegas', 'Proj wins', 'Diff']]
|
83 |
disp_frame = disp_frame.sort_values(by='Proj wins', ascending=False)
|
84 |
|
|
|
85 |
st.dataframe(disp_frame.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(precision=2), height = 1000, use_container_width = True)
|
86 |
|
87 |
st.download_button(
|
|
|
109 |
'Walk%', 'Walks', 'Runs%', 'Runs', 'ERA', 'Wins', 'Quality_starts', 'ADP', 'UD_fpts', 'DK_fpts']]
|
110 |
disp_frame_sp = working_data[['Name', 'Team', 'TBF', 'True_AVG', 'Hits', 'Singles', 'Doubles', 'Homeruns', 'Strikeouts',
|
111 |
'Walks', 'Runs', 'ERA', 'Wins', 'Quality_starts', 'ADP', 'UD_fpts', 'DK_fpts']]
|
112 |
+
disp_frame_sp = disp_frame_sp.sort_values(by='UD_fpts', ascending=False)
|
113 |
st.dataframe(disp_frame_sp.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(precision=2), height = 1000, use_container_width = True)
|
114 |
+
|
115 |
|
116 |
st.download_button(
|
117 |
label="Export Pitcher Projections",
|
|
|
138 |
'xHR%', 'Homeruns', 'Runs%', 'Runs', 'RBI%', 'RBI', 'Steal%', 'Stolen_bases', 'ADP', 'UD_fpts', 'DK_fpts']]
|
139 |
disp_frame_h = working_data[['Name', 'Team', 'PA', 'Walks', 'xHits', 'Singles', 'Doubles',
|
140 |
'Homeruns', 'Runs', 'RBI', 'Stolen_bases', 'ADP', 'UD_fpts', 'DK_fpts']]
|
141 |
+
disp_frame_h = disp_frame_h.sort_values(by='UD_fpts', ascending=False)
|
142 |
+
st.dataframe(disp_frame_h.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').background_gradient(cmap='_RdYlGn', subset=['ADP']).format(precision=2), height = 1000, use_container_width = True)
|
143 |
|
144 |
st.download_button(
|
145 |
label="Export Hitter Projections",
|