lunarflu HF staff commited on
Commit
1ab5900
1 Parent(s): 646db22

drop first column (id)

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -339,6 +339,7 @@ async def remove_huggingfolks():
339
 
340
  community_global_df['discord_exp'] = pd.to_numeric(community_global_df['discord_exp'])
341
  top_30_exp = community_global_df.nlargest(30, 'discord_exp')
 
342
  top_30_rows = top_30_exp.values.tolist()
343
 
344
  print(top_30_rows)
 
339
 
340
  community_global_df['discord_exp'] = pd.to_numeric(community_global_df['discord_exp'])
341
  top_30_exp = community_global_df.nlargest(30, 'discord_exp')
342
+ top_30_exp.drop(top_30_exp.columns[0], axis=1, inplace=True)
343
  top_30_rows = top_30_exp.values.tolist()
344
 
345
  print(top_30_rows)