.flake8
.gitignore
.isort.cfg
ARCHITECTURE.md
CHANGELOG.md
CLAUDE.md
README.md
TODO.md
pyproject.toml
pytest.ini
requirements-dev.txt
requirements-viz.txt
requirements.txt
setup.py
.github/CONTRIBUTING.md
.github/workflows/lint.yml
.github/workflows/publish.yml
.github/workflows/tests.yml
clustertk/__init__.py
clustertk/pipeline.py
clustertk.egg-info/PKG-INFO
clustertk.egg-info/SOURCES.txt
clustertk.egg-info/dependency_links.txt
clustertk.egg-info/requires.txt
clustertk.egg-info/top_level.txt
clustertk/clustering/__init__.py
clustertk/clustering/base.py
clustertk/clustering/dbscan.py
clustertk/clustering/gmm.py
clustertk/clustering/hdbscan.py
clustertk/clustering/hierarchical.py
clustertk/clustering/kmeans.py
clustertk/dimensionality/__init__.py
clustertk/dimensionality/manifold.py
clustertk/dimensionality/pca.py
clustertk/evaluation/__init__.py
clustertk/evaluation/metrics.py
clustertk/evaluation/optimal_k.py
clustertk/evaluation/stability.py
clustertk/feature_selection/__init__.py
clustertk/feature_selection/correlation.py
clustertk/feature_selection/smart_correlation.py
clustertk/feature_selection/variance.py
clustertk/interpretation/__init__.py
clustertk/interpretation/feature_importance.py
clustertk/interpretation/naming.py
clustertk/interpretation/profiles.py
clustertk/preprocessing/__init__.py
clustertk/preprocessing/missing.py
clustertk/preprocessing/multivariate_outliers.py
clustertk/preprocessing/outliers.py
clustertk/preprocessing/scaling.py
clustertk/preprocessing/transforms.py
clustertk/visualization/__init__.py
clustertk/visualization/_utils.py
clustertk/visualization/clusters.py
clustertk/visualization/correlation.py
clustertk/visualization/dimensionality.py
clustertk/visualization/profiles.py
docs/examples.md
docs/faq.md
docs/index.md
docs/installation.md
docs/quickstart.md
docs/user_guide/README.md
docs/user_guide/clustering.md
docs/user_guide/dimensionality.md
docs/user_guide/evaluation.md
docs/user_guide/export.md
docs/user_guide/feature_selection.md
docs/user_guide/interpretation.md
docs/user_guide/preprocessing.md
docs/user_guide/visualization.md
examples/basic_example.py
examples/test_all_algorithms.py
examples/test_naming.py
examples/test_visualization.py
tests/__init__.py
tests/conftest.py
tests/test_cluster_balance.py
tests/test_multivariate_outliers.py
tests/test_smart_correlation.py
tests/integration/__init__.py
tests/integration/test_pipeline.py
tests/test_clustering/__init__.py
tests/test_clustering/test_kmeans.py
tests/test_evaluation/__init__.py
tests/test_evaluation/test_metrics.py
tests/test_evaluation/test_stability.py
tests/test_interpretation/__init__.py
tests/test_interpretation/test_feature_importance.py
tests/test_preprocessing/__init__.py
tests/test_preprocessing/test_missing.py
tests/test_preprocessing/test_scaling.py