Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -309,7 +309,8 @@ yahoo_to_nhl = pd.read_csv("data/yahoo_to_nhl.csv",index_col=[0], encoding='unic
|
|
309 |
#yahoo_df_scrape = pd.read_csv('df_2023_small.csv',index_col=[0])
|
310 |
|
311 |
|
312 |
-
yahoo_df_scrape = pd.read_csv('df_2023_small.csv',index_col=[0])
|
|
|
313 |
yahoo_df_scrape.percent_owned = yahoo_df_scrape.percent_owned.astype(float)
|
314 |
yahoo_df_scrape.columns = ['yahoo_id','idx','full','first','last','average_pick','average_auction_cost','projected_auction_value','position','team','percent_owned','status']
|
315 |
yahoo_df_scrape.status = yahoo_df_scrape.status.astype(str)
|
|
|
309 |
#yahoo_df_scrape = pd.read_csv('df_2023_small.csv',index_col=[0])
|
310 |
|
311 |
|
312 |
+
# yahoo_df_scrape = pd.read_csv('df_2023_small.csv',index_col=[0])
|
313 |
+
yahoo_df_scrape = df_2023.copy()
|
314 |
yahoo_df_scrape.percent_owned = yahoo_df_scrape.percent_owned.astype(float)
|
315 |
yahoo_df_scrape.columns = ['yahoo_id','idx','full','first','last','average_pick','average_auction_cost','projected_auction_value','position','team','percent_owned','status']
|
316 |
yahoo_df_scrape.status = yahoo_df_scrape.status.astype(str)
|