James McCool commited on
Commit
e512b33
·
1 Parent(s): 68208b0

Rename analyze_player_combinations function to analyze_player_combos for consistency and clarity in the player combination analysis module.

Browse files
global_func/analyze_player_combos.py CHANGED
@@ -2,7 +2,7 @@ import pandas as pd
2
  import numpy as np
3
  from collections import Counter
4
 
5
- def analyze_player_combinations(display_frame, excluded_cols, combo_size=2):
6
  """
7
  Analyze the most common player combinations in a DataFrame.
8
  Optimized for large datasets by using vectorized operations.
 
2
  import numpy as np
3
  from collections import Counter
4
 
5
+ def analyze_player_combos(display_frame, excluded_cols, combo_size=2):
6
  """
7
  Analyze the most common player combinations in a DataFrame.
8
  Optimized for large datasets by using vectorized operations.