Report#

>>> from techminer2.tech_mining.document.kmeans import report
>>> report(
...     field='words',
...     #
...     # ITEM FILTERS:
...     top_n=50,
...     occ_range=(None, None),
...     gc_range=(None, None),
...     custom_items=None,
...     #
...     # KMEANS PARAMS:
...     n_themes=6,
...     init="k-means++",
...     n_init=10,
...     max_iter=300,
...     kmeans_tol=0.0001,
...     algorithm="auto",
...     #
...     # DATABASE PARAMS:
...     root_dir="example/",
...     database="main",
...     year_filter=(None, None),
...     cited_by_filter=(None, None),
... )
--INFO-- The file 'example/reports/document_clustering/kmeans/theme_000_abstracts_report.txt' was created.
--INFO-- The file 'example/reports/document_clustering/kmeans/theme_001_abstracts_report.txt' was created.
--INFO-- The file 'example/reports/document_clustering/kmeans/theme_002_abstracts_report.txt' was created.
--INFO-- The file 'example/reports/document_clustering/kmeans/theme_003_abstracts_report.txt' was created.
--INFO-- The file 'example/reports/document_clustering/kmeans/theme_004_abstracts_report.txt' was created.
--INFO-- The file 'example/reports/document_clustering/kmeans/theme_005_abstracts_report.txt' was created.