James McCool
commited on
Commit
·
add3343
1
Parent(s):
c6bf99d
Rename function create_stack_comparison to create_size_comparison in create_size_comparison.py for consistency with feature naming. This change aligns the function name with its purpose of comparing stack sizes.
Browse files
global_func/create_size_comparison.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import pandas as pd
|
2 |
|
3 |
-
def
|
4 |
overall_players = pd.Series(list(df['stack_size'])).value_counts()
|
5 |
contest_len = len(df)
|
6 |
|
|
|
1 |
import pandas as pd
|
2 |
|
3 |
+
def create_size_comparison(df: pd.DataFrame, entrants: list):
|
4 |
overall_players = pd.Series(list(df['stack_size'])).value_counts()
|
5 |
contest_len = len(df)
|
6 |
|