├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── examples.md ├── index.md ├── performance.md ├── references.md └── references │ ├── compute_pairwise_similarities.md │ ├── group_similar_strings.md │ ├── match_most_similar.md │ ├── match_strings.md │ ├── options_kwargs.md │ └── sg_class.md ├── images ├── BlockMatrix_1_1.png ├── BlockMatrix_1_2.png ├── BlockMatrix_2_2.png ├── BlockNumberSpaceExploration1.png ├── Fuzzy_vs_Exact.png ├── ScaledRuntimeContourPlot.png └── ScaledTimePerComparison.png ├── mkdocs.yml ├── pyproject.toml ├── setup.py ├── string_grouper ├── __init__.py ├── string_grouper.py └── test │ ├── __init__.py │ └── test_string_grouper.py ├── string_grouper_utils ├── __init__.py ├── string_grouper_utils.py └── test │ ├── __init__.py │ └── test_string_grouper_utils.py └── tutorials ├── accounts.csv ├── group_representatives.md ├── ignore_index_and_replace_na.md ├── sec__edgar_company_info_group003c.svg ├── tutorial_1.md └── zero_similarity.md /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/README.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/docs/performance.md -------------------------------------------------------------------------------- /docs/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/docs/references.md -------------------------------------------------------------------------------- /docs/references/compute_pairwise_similarities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/docs/references/compute_pairwise_similarities.md -------------------------------------------------------------------------------- /docs/references/group_similar_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/docs/references/group_similar_strings.md -------------------------------------------------------------------------------- /docs/references/match_most_similar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/docs/references/match_most_similar.md -------------------------------------------------------------------------------- /docs/references/match_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/docs/references/match_strings.md -------------------------------------------------------------------------------- /docs/references/options_kwargs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/docs/references/options_kwargs.md -------------------------------------------------------------------------------- /docs/references/sg_class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/docs/references/sg_class.md -------------------------------------------------------------------------------- /images/BlockMatrix_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/images/BlockMatrix_1_1.png -------------------------------------------------------------------------------- /images/BlockMatrix_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/images/BlockMatrix_1_2.png -------------------------------------------------------------------------------- /images/BlockMatrix_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/images/BlockMatrix_2_2.png -------------------------------------------------------------------------------- /images/BlockNumberSpaceExploration1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/images/BlockNumberSpaceExploration1.png -------------------------------------------------------------------------------- /images/Fuzzy_vs_Exact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/images/Fuzzy_vs_Exact.png -------------------------------------------------------------------------------- /images/ScaledRuntimeContourPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/images/ScaledRuntimeContourPlot.png -------------------------------------------------------------------------------- /images/ScaledTimePerComparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/images/ScaledTimePerComparison.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/setup.py -------------------------------------------------------------------------------- /string_grouper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/string_grouper/__init__.py -------------------------------------------------------------------------------- /string_grouper/string_grouper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/string_grouper/string_grouper.py -------------------------------------------------------------------------------- /string_grouper/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /string_grouper/test/test_string_grouper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/string_grouper/test/test_string_grouper.py -------------------------------------------------------------------------------- /string_grouper_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/string_grouper_utils/__init__.py -------------------------------------------------------------------------------- /string_grouper_utils/string_grouper_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/string_grouper_utils/string_grouper_utils.py -------------------------------------------------------------------------------- /string_grouper_utils/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /string_grouper_utils/test/test_string_grouper_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/string_grouper_utils/test/test_string_grouper_utils.py -------------------------------------------------------------------------------- /tutorials/accounts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/tutorials/accounts.csv -------------------------------------------------------------------------------- /tutorials/group_representatives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/tutorials/group_representatives.md -------------------------------------------------------------------------------- /tutorials/ignore_index_and_replace_na.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/tutorials/ignore_index_and_replace_na.md -------------------------------------------------------------------------------- /tutorials/sec__edgar_company_info_group003c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/tutorials/sec__edgar_company_info_group003c.svg -------------------------------------------------------------------------------- /tutorials/tutorial_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/tutorials/tutorial_1.md -------------------------------------------------------------------------------- /tutorials/zero_similarity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bergvca/string_grouper/HEAD/tutorials/zero_similarity.md --------------------------------------------------------------------------------