├── .gitignore ├── LICENSE ├── README.md ├── readme-pics ├── cd-directory.png ├── conda-install-pip.png ├── create.png ├── download-or-clone.png ├── download-zip.png ├── jupyter-notebooks.png └── new-env.png ├── requirements.txt ├── workshop-1-basics ├── 1-introduction-to-python-and-text.ipynb ├── 2-collecting-and-preparing.ipynb ├── 3-analysing-and-visualising.ipynb └── data │ ├── 6130-8.txt │ └── CLEAN-6130-8.txt └── workshop-2-topic-modelling ├── 1-introduction-to-topic-modelling-with-python.ipynb ├── 2-collecting-and-preparing-data-for-topic-modelling.ipynb ├── 3-topic-modelling-and-visualising.ipynb └── data ├── inaugural-test └── placeholder.txt ├── inaugural ├── 1789-Washington.txt ├── 1793-Washington.txt ├── 1797-Adams.txt ├── 1801-Jefferson.txt ├── 1805-Jefferson.txt ├── 1809-Madison.txt ├── 1813-Madison.txt ├── 1817-Monroe.txt ├── 1821-Monroe.txt ├── 1825-Adams.txt ├── 1829-Jackson.txt ├── 1833-Jackson.txt ├── 1837-VanBuren.txt ├── 1841-Harrison.txt ├── 1845-Polk.txt ├── 1849-Taylor.txt ├── 1853-Pierce.txt ├── 1857-Buchanan.txt ├── 1861-Lincoln.txt ├── 1865-Lincoln.txt ├── 1869-Grant.txt ├── 1873-Grant.txt ├── 1877-Hayes.txt ├── 1881-Garfield.txt ├── 1885-Cleveland.txt ├── 1889-Harrison.txt ├── 1893-Cleveland.txt ├── 1897-McKinley.txt ├── 1901-McKinley.txt ├── 1905-Roosevelt.txt ├── 1909-Taft.txt ├── 1913-Wilson.txt ├── 1917-Wilson.txt ├── 1921-Harding.txt ├── 1925-Coolidge.txt ├── 1929-Hoover.txt ├── 1933-Roosevelt.txt ├── 1937-Roosevelt.txt ├── 1941-Roosevelt.txt ├── 1945-Roosevelt.txt ├── 1949-Truman.txt ├── 1953-Eisenhower.txt ├── 1957-Eisenhower.txt ├── 1961-Kennedy.txt ├── 1965-Johnson.txt ├── 1969-Nixon.txt ├── 1973-Nixon.txt ├── 1977-Carter.txt ├── 1981-Reagan.txt ├── 1985-Reagan.txt ├── 1989-Bush.txt ├── 1993-Clinton.txt ├── 1997-Clinton.txt ├── 2001-Bush.txt ├── 2005-Bush.txt └── 2009-Obama.txt └── saved ├── 1-dictionary.gensim ├── 2-lda.gensim ├── 2-lda.gensim.expElogbeta.npy ├── 2-lda.gensim.id2word └── 2-lda.gensim.state /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/README.md -------------------------------------------------------------------------------- /readme-pics/cd-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/readme-pics/cd-directory.png -------------------------------------------------------------------------------- /readme-pics/conda-install-pip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/readme-pics/conda-install-pip.png -------------------------------------------------------------------------------- /readme-pics/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/readme-pics/create.png -------------------------------------------------------------------------------- /readme-pics/download-or-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/readme-pics/download-or-clone.png -------------------------------------------------------------------------------- /readme-pics/download-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/readme-pics/download-zip.png -------------------------------------------------------------------------------- /readme-pics/jupyter-notebooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/readme-pics/jupyter-notebooks.png -------------------------------------------------------------------------------- /readme-pics/new-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/readme-pics/new-env.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /workshop-1-basics/1-introduction-to-python-and-text.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-1-basics/1-introduction-to-python-and-text.ipynb -------------------------------------------------------------------------------- /workshop-1-basics/2-collecting-and-preparing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-1-basics/2-collecting-and-preparing.ipynb -------------------------------------------------------------------------------- /workshop-1-basics/3-analysing-and-visualising.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-1-basics/3-analysing-and-visualising.ipynb -------------------------------------------------------------------------------- /workshop-1-basics/data/6130-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-1-basics/data/6130-8.txt -------------------------------------------------------------------------------- /workshop-1-basics/data/CLEAN-6130-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-1-basics/data/CLEAN-6130-8.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/1-introduction-to-topic-modelling-with-python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/1-introduction-to-topic-modelling-with-python.ipynb -------------------------------------------------------------------------------- /workshop-2-topic-modelling/2-collecting-and-preparing-data-for-topic-modelling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/2-collecting-and-preparing-data-for-topic-modelling.ipynb -------------------------------------------------------------------------------- /workshop-2-topic-modelling/3-topic-modelling-and-visualising.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/3-topic-modelling-and-visualising.ipynb -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural-test/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1789-Washington.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1789-Washington.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1793-Washington.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1793-Washington.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1797-Adams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1797-Adams.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1801-Jefferson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1801-Jefferson.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1805-Jefferson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1805-Jefferson.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1809-Madison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1809-Madison.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1813-Madison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1813-Madison.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1817-Monroe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1817-Monroe.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1821-Monroe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1821-Monroe.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1825-Adams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1825-Adams.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1829-Jackson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1829-Jackson.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1833-Jackson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1833-Jackson.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1837-VanBuren.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1837-VanBuren.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1841-Harrison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1841-Harrison.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1845-Polk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1845-Polk.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1849-Taylor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1849-Taylor.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1853-Pierce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1853-Pierce.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1857-Buchanan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1857-Buchanan.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1861-Lincoln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1861-Lincoln.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1865-Lincoln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1865-Lincoln.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1869-Grant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1869-Grant.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1873-Grant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1873-Grant.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1877-Hayes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1877-Hayes.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1881-Garfield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1881-Garfield.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1885-Cleveland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1885-Cleveland.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1889-Harrison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1889-Harrison.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1893-Cleveland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1893-Cleveland.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1897-McKinley.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1897-McKinley.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1901-McKinley.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1901-McKinley.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1905-Roosevelt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1905-Roosevelt.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1909-Taft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1909-Taft.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1913-Wilson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1913-Wilson.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1917-Wilson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1917-Wilson.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1921-Harding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1921-Harding.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1925-Coolidge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1925-Coolidge.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1929-Hoover.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1929-Hoover.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1933-Roosevelt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1933-Roosevelt.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1937-Roosevelt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1937-Roosevelt.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1941-Roosevelt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1941-Roosevelt.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1945-Roosevelt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1945-Roosevelt.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1949-Truman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1949-Truman.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1953-Eisenhower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1953-Eisenhower.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1957-Eisenhower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1957-Eisenhower.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1961-Kennedy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1961-Kennedy.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1965-Johnson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1965-Johnson.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1969-Nixon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1969-Nixon.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1973-Nixon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1973-Nixon.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1977-Carter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1977-Carter.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1981-Reagan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1981-Reagan.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1985-Reagan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1985-Reagan.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1989-Bush.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1989-Bush.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1993-Clinton.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1993-Clinton.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/1997-Clinton.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/1997-Clinton.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/2001-Bush.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/2001-Bush.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/2005-Bush.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/2005-Bush.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/inaugural/2009-Obama.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/inaugural/2009-Obama.txt -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/saved/1-dictionary.gensim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/saved/1-dictionary.gensim -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/saved/2-lda.gensim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/saved/2-lda.gensim -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/saved/2-lda.gensim.expElogbeta.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/saved/2-lda.gensim.expElogbeta.npy -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/saved/2-lda.gensim.id2word: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/saved/2-lda.gensim.id2word -------------------------------------------------------------------------------- /workshop-2-topic-modelling/data/saved/2-lda.gensim.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchesterkadwell/intro-to-text-mining-with-python/HEAD/workshop-2-topic-modelling/data/saved/2-lda.gensim.state --------------------------------------------------------------------------------