Spaces:
Running
Running
James McCool
commited on
Commit
·
227e9e2
1
Parent(s):
a2d3c54
Remove Streamlit write statement from DraftKings MMA ROO build function
Browse files
function_hold/MMA_functions.py
CHANGED
@@ -123,7 +123,6 @@ def DK_MMA_ROO_Build(projections_file, std_var, distribution_type):
|
|
123 |
flex_file['Floor'] = flex_file['Median'] * (1-flex_file['range_var'])
|
124 |
flex_file['Ceiling'] = flex_file['Median'] * (1+flex_file['range_var'])
|
125 |
flex_file['STD'] = (flex_file['Median'] / std_var)
|
126 |
-
st.write(flex_file)
|
127 |
flex_file = flex_file[['Player', 'Salary', 'Floor', 'Median', 'Ceiling', 'STD']]
|
128 |
flex_file = flex_file.reset_index(drop=True)
|
129 |
hold_file = flex_file.copy()
|
|
|
123 |
flex_file['Floor'] = flex_file['Median'] * (1-flex_file['range_var'])
|
124 |
flex_file['Ceiling'] = flex_file['Median'] * (1+flex_file['range_var'])
|
125 |
flex_file['STD'] = (flex_file['Median'] / std_var)
|
|
|
126 |
flex_file = flex_file[['Player', 'Salary', 'Floor', 'Median', 'Ceiling', 'STD']]
|
127 |
flex_file = flex_file.reset_index(drop=True)
|
128 |
hold_file = flex_file.copy()
|