SYMBOL INDEX (25 symbols across 2 files) FILE: textpack/tests/test_tp.py class TestTextPack (line 7) | class TestTextPack(unittest.TestCase): method test_build_group_index (line 8) | def test_build_group_index(self): method test_add_grouped_column_to_data (line 17) | def test_add_grouped_column_to_data(self): method test_export_json (line 28) | def test_export_json(self): FILE: textpack/tp.py class TextPack (line 8) | class TextPack(): method __init__ (line 9) | def __init__(self, df, columns_to_group, match_threshold=0.75, ngram_r... method _get_column (line 17) | def _get_column(self, columns_to_group): method _ngrams_analyzer (line 24) | def _ngrams_analyzer(self, string): method _get_tf_idf_matrix (line 29) | def _get_tf_idf_matrix(self, vals): method _get_cosine_matrix (line 33) | def _get_cosine_matrix(self, vals): method _find_group (line 37) | def _find_group(self, y, x): method _add_vals_to_lookup (line 45) | def _add_vals_to_lookup(self, group, y, x): method _add_pair_to_lookup (line 49) | def _add_pair_to_lookup(self, row, col): method set_ngram_remove (line 56) | def set_ngram_remove(self, ngram_remove): method set_ngram_length (line 59) | def set_ngram_length(self, ngram_length): method set_match_threshold (line 62) | def set_match_threshold(self, match_threshold): method build_group_lookup (line 65) | def build_group_lookup(self): method add_grouped_column_to_data (line 76) | def add_grouped_column_to_data(self, column_name='Group'): method run (line 80) | def run(self, column_name='Group'): method _filter_df_for_export (line 85) | def _filter_df_for_export(self): method export_json (line 88) | def export_json(self, export_path=None): method export_csv (line 91) | def export_csv(self, export_path=None): function read_json (line 95) | def read_json(json_path, columns_to_group, match_threshold=0.75, ngram_r... function read_excel (line 99) | def read_excel(excel_path, columns_to_group, sheet_name=None, match_thre... function read_csv (line 103) | def read_csv(csv_path, columns_to_group, match_threshold=0.75, ngram_rem...