├── .github ├── ISSUE_TEMPLATE │ ├── 01_bugs.md │ ├── 02_docs.md │ ├── 03_feature-request.md │ └── config.yml └── workflows │ ├── documentation.yml │ ├── lint.yml │ ├── release.yml │ ├── stale.yml │ └── tests.yml ├── .gitignore ├── .zenodo.json ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _static │ ├── icon.png │ ├── icon_dark_old.png │ └── icon_old.png ├── coherence.rst ├── conf.py ├── dependencydistance.rst ├── descriptivestats.rst ├── extractors.rst ├── faq.rst ├── index.rst ├── information_theory.rst ├── installation.rst ├── make.bat ├── news.rst ├── posstats.rst ├── quality.rst ├── readability.rst ├── tutorial.rst ├── tutorials │ ├── filter_corpus_using_quality.ipynb │ ├── introductory_tutorial.ipynb │ ├── requirements.txt │ └── sklearn_integration.ipynb └── usingthepackage.rst ├── makefile ├── paper ├── paper.bib ├── paper.md ├── paper_quarto.pdf ├── paper_quarto.qmd └── readme.md ├── pyproject.toml ├── src └── textdescriptives │ ├── __init__.py │ ├── about.py │ ├── components │ ├── __init__.py │ ├── coherence.py │ ├── dependency_distance.py │ ├── descriptive_stats.py │ ├── information_theory.py │ ├── pos_proportions.py │ ├── quality.py │ ├── quality_data_classes.py │ ├── readability.py │ └── utils.py │ ├── data │ └── spam.csv │ ├── extractors.py │ ├── integrations │ ├── __init__.py │ └── sklearn_featurizer.py │ ├── load_components.py │ └── utils.py ├── tests ├── __init__.py ├── books.py ├── requirements.txt ├── test_coherence.py ├── test_dependency_distance.py ├── test_descriptive_stats.py ├── test_extractors.py ├── test_information.py ├── test_load_components.py ├── test_pos_proportions.py ├── test_quality.py ├── test_readability.py └── test_utils.py └── uv.lock /.github/ISSUE_TEMPLATE/01_bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.github/ISSUE_TEMPLATE/01_bugs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.github/ISSUE_TEMPLATE/02_docs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.github/ISSUE_TEMPLATE/03_feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/_static/icon.png -------------------------------------------------------------------------------- /docs/_static/icon_dark_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/_static/icon_dark_old.png -------------------------------------------------------------------------------- /docs/_static/icon_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/_static/icon_old.png -------------------------------------------------------------------------------- /docs/coherence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/coherence.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/dependencydistance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/dependencydistance.rst -------------------------------------------------------------------------------- /docs/descriptivestats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/descriptivestats.rst -------------------------------------------------------------------------------- /docs/extractors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/extractors.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/information_theory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/information_theory.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/news.rst -------------------------------------------------------------------------------- /docs/posstats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/posstats.rst -------------------------------------------------------------------------------- /docs/quality.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/quality.rst -------------------------------------------------------------------------------- /docs/readability.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/readability.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /docs/tutorials/filter_corpus_using_quality.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/tutorials/filter_corpus_using_quality.ipynb -------------------------------------------------------------------------------- /docs/tutorials/introductory_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/tutorials/introductory_tutorial.ipynb -------------------------------------------------------------------------------- /docs/tutorials/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/tutorials/requirements.txt -------------------------------------------------------------------------------- /docs/tutorials/sklearn_integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/tutorials/sklearn_integration.ipynb -------------------------------------------------------------------------------- /docs/usingthepackage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/docs/usingthepackage.rst -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/makefile -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/paper/paper.md -------------------------------------------------------------------------------- /paper/paper_quarto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/paper/paper_quarto.pdf -------------------------------------------------------------------------------- /paper/paper_quarto.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/paper/paper_quarto.qmd -------------------------------------------------------------------------------- /paper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/paper/readme.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/textdescriptives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/__init__.py -------------------------------------------------------------------------------- /src/textdescriptives/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/about.py -------------------------------------------------------------------------------- /src/textdescriptives/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/components/__init__.py -------------------------------------------------------------------------------- /src/textdescriptives/components/coherence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/components/coherence.py -------------------------------------------------------------------------------- /src/textdescriptives/components/dependency_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/components/dependency_distance.py -------------------------------------------------------------------------------- /src/textdescriptives/components/descriptive_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/components/descriptive_stats.py -------------------------------------------------------------------------------- /src/textdescriptives/components/information_theory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/components/information_theory.py -------------------------------------------------------------------------------- /src/textdescriptives/components/pos_proportions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/components/pos_proportions.py -------------------------------------------------------------------------------- /src/textdescriptives/components/quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/components/quality.py -------------------------------------------------------------------------------- /src/textdescriptives/components/quality_data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/components/quality_data_classes.py -------------------------------------------------------------------------------- /src/textdescriptives/components/readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/components/readability.py -------------------------------------------------------------------------------- /src/textdescriptives/components/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/components/utils.py -------------------------------------------------------------------------------- /src/textdescriptives/data/spam.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/data/spam.csv -------------------------------------------------------------------------------- /src/textdescriptives/extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/extractors.py -------------------------------------------------------------------------------- /src/textdescriptives/integrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/textdescriptives/integrations/sklearn_featurizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/integrations/sklearn_featurizer.py -------------------------------------------------------------------------------- /src/textdescriptives/load_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/load_components.py -------------------------------------------------------------------------------- /src/textdescriptives/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/src/textdescriptives/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/books.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_coherence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/test_coherence.py -------------------------------------------------------------------------------- /tests/test_dependency_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/test_dependency_distance.py -------------------------------------------------------------------------------- /tests/test_descriptive_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/test_descriptive_stats.py -------------------------------------------------------------------------------- /tests/test_extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/test_extractors.py -------------------------------------------------------------------------------- /tests/test_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/test_information.py -------------------------------------------------------------------------------- /tests/test_load_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/test_load_components.py -------------------------------------------------------------------------------- /tests/test_pos_proportions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/test_pos_proportions.py -------------------------------------------------------------------------------- /tests/test_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/test_quality.py -------------------------------------------------------------------------------- /tests/test_readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/test_readability.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLasse/TextDescriptives/HEAD/uv.lock --------------------------------------------------------------------------------