pandas-survey-toolkit 1.0.4__tar.gz → 1.0.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pandas_survey_toolkit-1.0.10/.github/workflows/publish.yml +80 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/.gitignore +164 -164
- pandas_survey_toolkit-1.0.10/.readthedocs.yaml +17 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/LICENSE +21 -21
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/PKG-INFO +77 -73
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/README.md +37 -36
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/Makefile +20 -20
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/make.bat +35 -35
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/requirements.txt +4 -4
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/api/analytics.rst +6 -6
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/api/index.rst +8 -8
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/api/nlp.rst +6 -6
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/api/vis.rst +10 -10
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/conf.py +62 -62
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/examples/03 - cluster questions.ipynb +262 -206
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/examples.rst +11 -11
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/index.rst +24 -24
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/installation.rst +11 -11
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/usage.rst +30 -30
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/notebooks/keyword_graph.html +126 -126
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/notebooks/keyword_sentiment_graph.html +126 -126
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/pyproject.toml +22 -22
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/requirements.txt +17 -17
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/setup.cfg +4 -4
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/setup.py +42 -39
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/src/pandas_survey_toolkit/analytics.py +151 -113
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/src/pandas_survey_toolkit/nlp.py +997 -824
- pandas_survey_toolkit-1.0.10/src/pandas_survey_toolkit/utils.py +121 -0
- pandas_survey_toolkit-1.0.10/src/pandas_survey_toolkit/vis.py +198 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/src/pandas_survey_toolkit.egg-info/PKG-INFO +77 -73
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/src/pandas_survey_toolkit.egg-info/SOURCES.txt +1 -0
- pandas_survey_toolkit-1.0.10/src/pandas_survey_toolkit.egg-info/requires.txt +12 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/tests/context.py +4 -4
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/tests/test_analytics.py +55 -55
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/tests/test_nlp.py +228 -228
- pandas_survey_toolkit-1.0.4/.readthedocs.yaml +0 -15
- pandas_survey_toolkit-1.0.4/src/pandas_survey_toolkit/utils.py +0 -89
- pandas_survey_toolkit-1.0.4/src/pandas_survey_toolkit/vis.py +0 -760
- pandas_survey_toolkit-1.0.4/src/pandas_survey_toolkit.egg-info/requires.txt +0 -9
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/MANIFEST.in +0 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/examples/01 - extract sentiment.ipynb +0 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/docs/source/examples/02 - cluster comments.ipynb +0 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/notebooks/austin_likert.xlsx +0 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/notebooks/tutorial_cluster_comments.ipynb +0 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/notebooks/tutorial_cluster_likert.ipynb +0 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/src/pandas_survey_toolkit/__init__.py +0 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/src/pandas_survey_toolkit.egg-info/dependency_links.txt +0 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/src/pandas_survey_toolkit.egg-info/top_level.txt +0 -0
- {pandas_survey_toolkit-1.0.4 → pandas_survey_toolkit-1.0.10}/tests/__init__.py +0 -0
@@ -0,0 +1,80 @@
|
|
1
|
+
name: Publish to PyPI
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- 'v*' # Triggers on version tags like v1.0.0
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
build:
|
10
|
+
name: Build distribution 📦
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v4
|
14
|
+
with:
|
15
|
+
fetch-depth: 0 # Important for setuptools_scm
|
16
|
+
- name: Set up Python
|
17
|
+
uses: actions/setup-python@v5
|
18
|
+
with:
|
19
|
+
python-version: "3.x"
|
20
|
+
- name: Install build dependencies
|
21
|
+
run: |
|
22
|
+
python -m pip install --upgrade pip
|
23
|
+
python -m pip install build
|
24
|
+
- name: Build package
|
25
|
+
run: python -m build
|
26
|
+
- name: Store the distribution packages
|
27
|
+
uses: actions/upload-artifact@v4
|
28
|
+
with:
|
29
|
+
name: python-package-distributions
|
30
|
+
path: dist/
|
31
|
+
|
32
|
+
publish-to-pypi:
|
33
|
+
name: Publish to PyPI
|
34
|
+
if: startsWith(github.ref, 'refs/tags/')
|
35
|
+
needs:
|
36
|
+
- build
|
37
|
+
runs-on: ubuntu-latest
|
38
|
+
environment:
|
39
|
+
name: pypi
|
40
|
+
steps:
|
41
|
+
- name: Download all the dists
|
42
|
+
uses: actions/download-artifact@v4
|
43
|
+
with:
|
44
|
+
name: python-package-distributions
|
45
|
+
path: dist/
|
46
|
+
- name: Publish distribution 📦 to PyPI
|
47
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
48
|
+
with:
|
49
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
50
|
+
|
51
|
+
create-github-release:
|
52
|
+
name: Create GitHub Release
|
53
|
+
needs:
|
54
|
+
- publish-to-pypi
|
55
|
+
runs-on: ubuntu-latest
|
56
|
+
permissions:
|
57
|
+
contents: write # Required to create releases
|
58
|
+
steps:
|
59
|
+
- uses: actions/checkout@v4
|
60
|
+
- name: Create Release
|
61
|
+
uses: softprops/action-gh-release@v2
|
62
|
+
with:
|
63
|
+
tag_name: ${{ github.ref_name }}
|
64
|
+
name: Release ${{ github.ref_name }}
|
65
|
+
body: |
|
66
|
+
## Changes in ${{ github.ref_name }}
|
67
|
+
|
68
|
+
This release was automatically created from tag ${{ github.ref_name }}.
|
69
|
+
|
70
|
+
### What's New
|
71
|
+
- Package published to PyPI: https://pypi.org/project/pandas-survey-toolkit/${{ github.ref_name }}/
|
72
|
+
|
73
|
+
### Installation
|
74
|
+
```bash
|
75
|
+
pip install --upgrade pandas-survey-toolkit
|
76
|
+
```
|
77
|
+
|
78
|
+
For detailed changes, see the commit history between releases.
|
79
|
+
draft: false
|
80
|
+
prerelease: false
|
@@ -1,165 +1,165 @@
|
|
1
|
-
# Byte-compiled / optimized / DLL files
|
2
|
-
__pycache__/
|
3
|
-
*.py[cod]
|
4
|
-
*$py.class
|
5
|
-
|
6
|
-
# C extensions
|
7
|
-
*.so
|
8
|
-
|
9
|
-
# Distribution / packaging
|
10
|
-
.Python
|
11
|
-
build/
|
12
|
-
develop-eggs/
|
13
|
-
dist/
|
14
|
-
downloads/
|
15
|
-
eggs/
|
16
|
-
.eggs/
|
17
|
-
lib/
|
18
|
-
lib64/
|
19
|
-
parts/
|
20
|
-
sdist/
|
21
|
-
var/
|
22
|
-
wheels/
|
23
|
-
share/python-wheels/
|
24
|
-
*.egg-info/
|
25
|
-
.installed.cfg
|
26
|
-
*.egg
|
27
|
-
MANIFEST
|
28
|
-
|
29
|
-
# PyInstaller
|
30
|
-
# Usually these files are written by a python script from a template
|
31
|
-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
32
|
-
*.manifest
|
33
|
-
*.spec
|
34
|
-
|
35
|
-
# Installer logs
|
36
|
-
pip-log.txt
|
37
|
-
pip-delete-this-directory.txt
|
38
|
-
|
39
|
-
# Unit test / coverage reports
|
40
|
-
htmlcov/
|
41
|
-
.tox/
|
42
|
-
.nox/
|
43
|
-
.coverage
|
44
|
-
.coverage.*
|
45
|
-
.cache
|
46
|
-
nosetests.xml
|
47
|
-
coverage.xml
|
48
|
-
*.cover
|
49
|
-
*.py,cover
|
50
|
-
.hypothesis/
|
51
|
-
.pytest_cache/
|
52
|
-
cover/
|
53
|
-
|
54
|
-
# Translations
|
55
|
-
*.mo
|
56
|
-
*.pot
|
57
|
-
|
58
|
-
# Django stuff:
|
59
|
-
*.log
|
60
|
-
local_settings.py
|
61
|
-
db.sqlite3
|
62
|
-
db.sqlite3-journal
|
63
|
-
|
64
|
-
# Flask stuff:
|
65
|
-
instance/
|
66
|
-
.webassets-cache
|
67
|
-
|
68
|
-
# Scrapy stuff:
|
69
|
-
.scrapy
|
70
|
-
|
71
|
-
# Sphinx documentation
|
72
|
-
docs/_build/
|
73
|
-
|
74
|
-
# PyBuilder
|
75
|
-
.pybuilder/
|
76
|
-
target/
|
77
|
-
|
78
|
-
# Jupyter Notebook
|
79
|
-
.ipynb_checkpoints
|
80
|
-
|
81
|
-
# IPython
|
82
|
-
profile_default/
|
83
|
-
ipython_config.py
|
84
|
-
|
85
|
-
# pyenv
|
86
|
-
# For a library or package, you might want to ignore these files since the code is
|
87
|
-
# intended to run in multiple environments; otherwise, check them in:
|
88
|
-
# .python-version
|
89
|
-
|
90
|
-
# pipenv
|
91
|
-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
92
|
-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
93
|
-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
94
|
-
# install all needed dependencies.
|
95
|
-
#Pipfile.lock
|
96
|
-
|
97
|
-
# poetry
|
98
|
-
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
99
|
-
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
100
|
-
# commonly ignored for libraries.
|
101
|
-
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
102
|
-
#poetry.lock
|
103
|
-
|
104
|
-
# pdm
|
105
|
-
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
106
|
-
#pdm.lock
|
107
|
-
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
108
|
-
# in version control.
|
109
|
-
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
110
|
-
.pdm.toml
|
111
|
-
.pdm-python
|
112
|
-
.pdm-build/
|
113
|
-
|
114
|
-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
115
|
-
__pypackages__/
|
116
|
-
|
117
|
-
# Celery stuff
|
118
|
-
celerybeat-schedule
|
119
|
-
celerybeat.pid
|
120
|
-
|
121
|
-
# SageMath parsed files
|
122
|
-
*.sage.py
|
123
|
-
|
124
|
-
# Environments
|
125
|
-
.env
|
126
|
-
.venv
|
127
|
-
env/
|
128
|
-
venv/
|
129
|
-
ENV/
|
130
|
-
env.bak/
|
131
|
-
venv.bak/
|
132
|
-
.vscode/
|
133
|
-
|
134
|
-
# Spyder project settings
|
135
|
-
.spyderproject
|
136
|
-
.spyproject
|
137
|
-
|
138
|
-
# Rope project settings
|
139
|
-
.ropeproject
|
140
|
-
|
141
|
-
# mkdocs documentation
|
142
|
-
/site
|
143
|
-
|
144
|
-
# mypy
|
145
|
-
.mypy_cache/
|
146
|
-
.dmypy.json
|
147
|
-
dmypy.json
|
148
|
-
|
149
|
-
# Pyre type checker
|
150
|
-
.pyre/
|
151
|
-
|
152
|
-
# pytype static type analyzer
|
153
|
-
.pytype/
|
154
|
-
|
155
|
-
# Cython debug symbols
|
156
|
-
cython_debug/
|
157
|
-
|
158
|
-
# PyCharm
|
159
|
-
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
160
|
-
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
161
|
-
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
162
|
-
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
163
|
-
#.idea/
|
164
|
-
|
1
|
+
# Byte-compiled / optimized / DLL files
|
2
|
+
__pycache__/
|
3
|
+
*.py[cod]
|
4
|
+
*$py.class
|
5
|
+
|
6
|
+
# C extensions
|
7
|
+
*.so
|
8
|
+
|
9
|
+
# Distribution / packaging
|
10
|
+
.Python
|
11
|
+
build/
|
12
|
+
develop-eggs/
|
13
|
+
dist/
|
14
|
+
downloads/
|
15
|
+
eggs/
|
16
|
+
.eggs/
|
17
|
+
lib/
|
18
|
+
lib64/
|
19
|
+
parts/
|
20
|
+
sdist/
|
21
|
+
var/
|
22
|
+
wheels/
|
23
|
+
share/python-wheels/
|
24
|
+
*.egg-info/
|
25
|
+
.installed.cfg
|
26
|
+
*.egg
|
27
|
+
MANIFEST
|
28
|
+
|
29
|
+
# PyInstaller
|
30
|
+
# Usually these files are written by a python script from a template
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
32
|
+
*.manifest
|
33
|
+
*.spec
|
34
|
+
|
35
|
+
# Installer logs
|
36
|
+
pip-log.txt
|
37
|
+
pip-delete-this-directory.txt
|
38
|
+
|
39
|
+
# Unit test / coverage reports
|
40
|
+
htmlcov/
|
41
|
+
.tox/
|
42
|
+
.nox/
|
43
|
+
.coverage
|
44
|
+
.coverage.*
|
45
|
+
.cache
|
46
|
+
nosetests.xml
|
47
|
+
coverage.xml
|
48
|
+
*.cover
|
49
|
+
*.py,cover
|
50
|
+
.hypothesis/
|
51
|
+
.pytest_cache/
|
52
|
+
cover/
|
53
|
+
|
54
|
+
# Translations
|
55
|
+
*.mo
|
56
|
+
*.pot
|
57
|
+
|
58
|
+
# Django stuff:
|
59
|
+
*.log
|
60
|
+
local_settings.py
|
61
|
+
db.sqlite3
|
62
|
+
db.sqlite3-journal
|
63
|
+
|
64
|
+
# Flask stuff:
|
65
|
+
instance/
|
66
|
+
.webassets-cache
|
67
|
+
|
68
|
+
# Scrapy stuff:
|
69
|
+
.scrapy
|
70
|
+
|
71
|
+
# Sphinx documentation
|
72
|
+
docs/_build/
|
73
|
+
|
74
|
+
# PyBuilder
|
75
|
+
.pybuilder/
|
76
|
+
target/
|
77
|
+
|
78
|
+
# Jupyter Notebook
|
79
|
+
.ipynb_checkpoints
|
80
|
+
|
81
|
+
# IPython
|
82
|
+
profile_default/
|
83
|
+
ipython_config.py
|
84
|
+
|
85
|
+
# pyenv
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
88
|
+
# .python-version
|
89
|
+
|
90
|
+
# pipenv
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
94
|
+
# install all needed dependencies.
|
95
|
+
#Pipfile.lock
|
96
|
+
|
97
|
+
# poetry
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
100
|
+
# commonly ignored for libraries.
|
101
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
102
|
+
#poetry.lock
|
103
|
+
|
104
|
+
# pdm
|
105
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
106
|
+
#pdm.lock
|
107
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
108
|
+
# in version control.
|
109
|
+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
110
|
+
.pdm.toml
|
111
|
+
.pdm-python
|
112
|
+
.pdm-build/
|
113
|
+
|
114
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
115
|
+
__pypackages__/
|
116
|
+
|
117
|
+
# Celery stuff
|
118
|
+
celerybeat-schedule
|
119
|
+
celerybeat.pid
|
120
|
+
|
121
|
+
# SageMath parsed files
|
122
|
+
*.sage.py
|
123
|
+
|
124
|
+
# Environments
|
125
|
+
.env
|
126
|
+
.venv
|
127
|
+
env/
|
128
|
+
venv/
|
129
|
+
ENV/
|
130
|
+
env.bak/
|
131
|
+
venv.bak/
|
132
|
+
.vscode/
|
133
|
+
|
134
|
+
# Spyder project settings
|
135
|
+
.spyderproject
|
136
|
+
.spyproject
|
137
|
+
|
138
|
+
# Rope project settings
|
139
|
+
.ropeproject
|
140
|
+
|
141
|
+
# mkdocs documentation
|
142
|
+
/site
|
143
|
+
|
144
|
+
# mypy
|
145
|
+
.mypy_cache/
|
146
|
+
.dmypy.json
|
147
|
+
dmypy.json
|
148
|
+
|
149
|
+
# Pyre type checker
|
150
|
+
.pyre/
|
151
|
+
|
152
|
+
# pytype static type analyzer
|
153
|
+
.pytype/
|
154
|
+
|
155
|
+
# Cython debug symbols
|
156
|
+
cython_debug/
|
157
|
+
|
158
|
+
# PyCharm
|
159
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
160
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
161
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
162
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
163
|
+
#.idea/
|
164
|
+
|
165
165
|
data/
|
@@ -0,0 +1,17 @@
|
|
1
|
+
build:
|
2
|
+
os: ubuntu-24.04
|
3
|
+
tools:
|
4
|
+
python: "3.11"
|
5
|
+
apt_packages:
|
6
|
+
- pandoc
|
7
|
+
|
8
|
+
sphinx:
|
9
|
+
configuration: docs/source/conf.py
|
10
|
+
|
11
|
+
python:
|
12
|
+
install:
|
13
|
+
- method: pip
|
14
|
+
path: .
|
15
|
+
- requirements: docs/requirements.txt
|
16
|
+
- requirements: requirements.txt
|
17
|
+
|
@@ -1,21 +1,21 @@
|
|
1
|
-
MIT License
|
2
|
-
|
3
|
-
Copyright (c) 2024 Andy7475
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 Andy7475
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -1,73 +1,77 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: pandas-survey-toolkit
|
3
|
-
Version: 1.0.
|
4
|
-
Summary: A pandas extension for survey analysis
|
5
|
-
Home-page: https://github.com/Andy7475/pandas-survey-toolkit
|
6
|
-
Author: Andy Laing
|
7
|
-
Author-email: andylaing5@gmail.com
|
8
|
-
License: MIT
|
9
|
-
Project-URL: Bug Tracker, https://github.com/Andy7475/pandas-survey-toolkit/issues
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
11
|
-
Classifier: License :: OSI Approved :: MIT License
|
12
|
-
Classifier: Operating System :: OS Independent
|
13
|
-
Requires-Python: >=3.
|
14
|
-
Description-Content-Type: text/markdown
|
15
|
-
License-File: LICENSE
|
16
|
-
Requires-Dist:
|
17
|
-
Requires-Dist:
|
18
|
-
Requires-Dist:
|
19
|
-
Requires-Dist:
|
20
|
-
Requires-Dist:
|
21
|
-
Requires-Dist:
|
22
|
-
Requires-Dist:
|
23
|
-
Requires-Dist:
|
24
|
-
Requires-Dist:
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
Dynamic:
|
29
|
-
Dynamic:
|
30
|
-
Dynamic:
|
31
|
-
Dynamic:
|
32
|
-
Dynamic:
|
33
|
-
Dynamic:
|
34
|
-
Dynamic:
|
35
|
-
Dynamic:
|
36
|
-
Dynamic:
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
#
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: pandas-survey-toolkit
|
3
|
+
Version: 1.0.10
|
4
|
+
Summary: A pandas extension for survey analysis
|
5
|
+
Home-page: https://github.com/Andy7475/pandas-survey-toolkit
|
6
|
+
Author: Andy Laing
|
7
|
+
Author-email: andylaing5@gmail.com
|
8
|
+
License: MIT
|
9
|
+
Project-URL: Bug Tracker, https://github.com/Andy7475/pandas-survey-toolkit/issues
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
12
|
+
Classifier: Operating System :: OS Independent
|
13
|
+
Requires-Python: >=3.11
|
14
|
+
Description-Content-Type: text/markdown
|
15
|
+
License-File: LICENSE
|
16
|
+
Requires-Dist: torch<3.0,>=2.1.0
|
17
|
+
Requires-Dist: sentence-transformers<4.0,>=3.0
|
18
|
+
Requires-Dist: umap-learn<1.0,>=0.5
|
19
|
+
Requires-Dist: scikit-learn<2.0,>=1.3
|
20
|
+
Requires-Dist: pandas<3.0,>=2.2.0
|
21
|
+
Requires-Dist: numpy<2.0,>=1.26.0
|
22
|
+
Requires-Dist: pandas-flavor<1.0,>=0.6.0
|
23
|
+
Requires-Dist: spacy<4.0,>=3.0.0
|
24
|
+
Requires-Dist: gensim<5.0,>=4.0.0
|
25
|
+
Requires-Dist: altair<5.0,>=4.0.0
|
26
|
+
Requires-Dist: matplotlib<4.0,>=3.0.0
|
27
|
+
Requires-Dist: pyvis<1.0,>=0.3.2
|
28
|
+
Dynamic: author
|
29
|
+
Dynamic: author-email
|
30
|
+
Dynamic: classifier
|
31
|
+
Dynamic: description
|
32
|
+
Dynamic: description-content-type
|
33
|
+
Dynamic: home-page
|
34
|
+
Dynamic: license
|
35
|
+
Dynamic: license-file
|
36
|
+
Dynamic: project-url
|
37
|
+
Dynamic: requires-dist
|
38
|
+
Dynamic: requires-python
|
39
|
+
Dynamic: summary
|
40
|
+
|
41
|
+
# Faster and more Insightful analysis of survey results
|
42
|
+
|
43
|
+
This package lets you apply advanced Natural Language Processing (NLP) and Machine Learning functions on survey results directly within a dataframe.
|
44
|
+
|
45
|
+
It fills a gap where many NLP packages (like spacy, genism, sentence_transformers) are not designed for data in a spreadsheet (and therefore imported into a dataframe), and many of the people who are tasked with analysing survey results are often not data scientists.
|
46
|
+
|
47
|
+
For example, to extract the sentiment you can just type:
|
48
|
+
|
49
|
+
df.extract_sentiment(input_column="survey-comments")
|
50
|
+
|
51
|
+
It will abstract away a lot of the data transformation pipeline to give you useful functionality with minimal code.
|
52
|
+
|
53
|
+
# Examples
|
54
|
+
|
55
|
+
See [ReadTheDocs](https://pandas-survey-toolkit.readthedocs.io/en/latest/) for simple example notebooks. There are more detailed notebooks in the repo under notebooks/
|
56
|
+
|
57
|
+
# Functionality
|
58
|
+
|
59
|
+
## Clustering comments
|
60
|
+
It will group similar free-text comments together and assign a cluster ID. This is a useful step prior to any qualitative analysis.
|
61
|
+
|
62
|
+
## Sentiment Analysis
|
63
|
+
It will measure the sentiment in terms or postive / neutral / negative and assign a score for each of those parts, picking the highest scoring as the most likely overall sentiment.
|
64
|
+
|
65
|
+
## Topic analysis
|
66
|
+
Involves TFIDF and word co-occurence to gain some high level insights into the likely topics
|
67
|
+
|
68
|
+
## Clustering likert questions (or other responses)
|
69
|
+
For strongly disagree ... neutral ... strong agree type responses, it will groups all those questions together to identity groups of respondents within your survey data. This can be much more useful than overall averages across the survey.
|
70
|
+
|
71
|
+
## Visualisation
|
72
|
+
Functions to help make sense of the clusters and topics you have identified using the above functions (in development)
|
73
|
+
|
74
|
+
## Setup
|
75
|
+
If sentence transformers throws dll errors: https://stackoverflow.com/questions/78484297/c-torch-lib-fbgemm-dll-or-one-of-its-dependencies/78794748#78794748
|
76
|
+
|
77
|
+
|