├── .gitignore ├── 1-intro-to-python-and-text.ipynb ├── 2-python-basics-recap-and-more.ipynb ├── 3-choosing-and-collecting-text.ipynb ├── 4-cleaning-and-exploring-text.ipynb ├── 5-analysis-and-visualisation.ipynb ├── LICENSE ├── README.md ├── assets ├── cd-directory.png ├── conda-install-pip.png ├── create.png ├── deepnote-python39.png ├── download-or-clone.png ├── download-zip.png ├── function-black-box.png ├── jupyter-notebooks.png ├── list-comprehension-with-condition.png ├── list-comprehension.png ├── new-env.png └── pipeline.png ├── data ├── CLEAN-2199-0.txt ├── ORIGINAL-2199-0.txt └── PREPPED-2199-0.txt ├── exercises ├── 1-reversing-strings-solution.ipynb └── 1-reversing-strings.ipynb ├── poetry.lock ├── pyproject.toml ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/.gitignore -------------------------------------------------------------------------------- /1-intro-to-python-and-text.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/1-intro-to-python-and-text.ipynb -------------------------------------------------------------------------------- /2-python-basics-recap-and-more.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/2-python-basics-recap-and-more.ipynb -------------------------------------------------------------------------------- /3-choosing-and-collecting-text.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/3-choosing-and-collecting-text.ipynb -------------------------------------------------------------------------------- /4-cleaning-and-exploring-text.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/4-cleaning-and-exploring-text.ipynb -------------------------------------------------------------------------------- /5-analysis-and-visualisation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/5-analysis-and-visualisation.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/README.md -------------------------------------------------------------------------------- /assets/cd-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/cd-directory.png -------------------------------------------------------------------------------- /assets/conda-install-pip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/conda-install-pip.png -------------------------------------------------------------------------------- /assets/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/create.png -------------------------------------------------------------------------------- /assets/deepnote-python39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/deepnote-python39.png -------------------------------------------------------------------------------- /assets/download-or-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/download-or-clone.png -------------------------------------------------------------------------------- /assets/download-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/download-zip.png -------------------------------------------------------------------------------- /assets/function-black-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/function-black-box.png -------------------------------------------------------------------------------- /assets/jupyter-notebooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/jupyter-notebooks.png -------------------------------------------------------------------------------- /assets/list-comprehension-with-condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/list-comprehension-with-condition.png -------------------------------------------------------------------------------- /assets/list-comprehension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/list-comprehension.png -------------------------------------------------------------------------------- /assets/new-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/new-env.png -------------------------------------------------------------------------------- /assets/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/assets/pipeline.png -------------------------------------------------------------------------------- /data/CLEAN-2199-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/data/CLEAN-2199-0.txt -------------------------------------------------------------------------------- /data/ORIGINAL-2199-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/data/ORIGINAL-2199-0.txt -------------------------------------------------------------------------------- /data/PREPPED-2199-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/data/PREPPED-2199-0.txt -------------------------------------------------------------------------------- /exercises/1-reversing-strings-solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/exercises/1-reversing-strings-solution.ipynb -------------------------------------------------------------------------------- /exercises/1-reversing-strings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/exercises/1-reversing-strings.ipynb -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python-2020/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10 --------------------------------------------------------------------------------