- Project: Hackathon -- Hacking Educational Planning - IIPE-UNESCO x Latitudes
- Description: Challenge #3 - Testing the use of inspection report textual data and modeling it in the form of thematic mapping to contribute to the improvement of the quality of education.
- Data Source: Department of Education, Ireland
- Type of analysis: Text mining, NLP, geospatial representation of text
- Links:
- Scrape the PDF reports
- Extract text from PDF
- Use LDA to extract topics
- Vizualize on a map
Clone repo
mkdir ~/code/alexisgourdol
cd ~/code/alexisgourdol
git clone [email protected]:alexisgourdol/IIPE-hackathon.git
Using pyenv
https://github.com/pyenv/pyenv#homebrew-on-macos
If you're on Windows, consider using @kirankotari's pyenv-win fork. (pyenv does not work on windows outside the Windows Subsystem for Linux)
pyenv virtualenv IIPE # create a new virtualenv for our project
pyenv virtualenvs # list all virtualenvs
pyenv activate IIPE # enable our new virtualenv
pip install --upgrade pip # install and upgrade pip
pip list # list all installed packages
pip install -r https://raw.githubusercontent.com/alexisgourdol/IIPE-hackathon/master/requirements.txt
pip list
-
Make sure your git status is clean
git status
-
Get latest master
git checkout master
git pull origin master
- 1 task = 1 branch
git checkout -b my-task
Work on the existing files, or create new ones
git add .
git commit -m "This is an informative message about my-task"
git push origin my-task
- Create a pull request
Use the website
Click on compare & pull request
-
Someone else Reviews and Approves the pull request
-
Remove unused branches locally
git sweep