nesticot commited on
Commit
ec54e74
·
verified ·
1 Parent(s): 48caae0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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)