Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Latest commit

 

History

History
65 lines (39 loc) · 7.37 KB

README.md

File metadata and controls

65 lines (39 loc) · 7.37 KB

Programming for the Humanities

The programming language Python is widely used within many scientific domains nowadays and the language is readily accessible to scholars from the Humanities. Python is an excellent choice for dealing with (linguistic as well as literary) textual data, which is so typical of the Humanities. In this book you will be thoroughly introduced to the language and be taught to program basic algorithmic procedures. The book expects no prior experience with programming, although we hope to provide some interesting insights and skills for more advanced programmers as well. The book consists of 10 chapters. Chapter 5 and Chapter 6 are still in draft status and not ready for use.

  • Chapter 1 starts with the very basics where we will try to whet your appetite. You will be asked to do many short quizes to test whether you really understand the material.
  • Chapter 2 will introduce you to the task of text processing. You will learn how to read files from your computer, how to clean them and compute a frequency distribution over words.
  • Chapter 3 deals with preprocessing text. You will learn some of the elementary tools to analyse your data.
  • Chapter 4 is a more theoretical chapter that explains to you some of the basic programming principles, common practices and where to find documentation.
  • In Chapter 5 things are becoming increasingly difficult. First, you will write a program to compute the readability of texts. Next, you will implement the basic algorithm that is behind authorship attribution!
  • In Chapter 6 we will introduce you to the concept of Object Oriented Programming. You will implement a network structure with which you can analyze relations between people on Twitter.
  • From Chapter 7 onwards, we will start working on more real applications. In Chapter 7 we will work on systems for searching through collections of text. We introduce you to the field of Information Retrieval and build a simple information retrieval system. This chapter furthers your knowledge about Object Oriented Programming.
  • In Chapter 8 we create a complete web application to search through your own library of PDF files. This will be our first real application ready for use by end-users. The chapter introduces you to many modules available in the standard library as well as third-party modules.
  • Chapter 9 will introduce you to some of the more advanced techniques used in automatic classification. We will implement a naive bayes classifier, show you a number of evaluation metrics and strategies and briefly address the question of parameter optimization.
  • Chapter 10 focusses on hierarchical clustering, one of the important methods for unsupervized learning. We explain the basic methods for doining hierarchical clustering and create a simple implementation in Python.

This document describes the installation procedure for all the software needed for the Python class. If your stuck anywhere in the installation procedure, please do not hesitate to contact Folgert Karsdorp (folgert.karsdorp@meertens.knaw.nl).

Text Editor

We advice you to install a good text editor, Sublime text 2/3 for example. However, you are absolutely free to use your own favorite editor. For Sublime Text 2/3, go to http://www.sublimetext.com/, download the version for your operating system and install.

In the course we will be using software that works best with Google Chrome. Firefox (or above) and Safari will also work. Internet Explorer is not supported.

We will be using Python 3 for our course. Lower versions are more or less supported, but not recommended.

Python Installation

We strongly advice you to install the Anaconda Python Distribution. This distribution contains all the necessary modules and packages needed for this course. It is available for all platforms and provides a simple installation procedure. You can download it from: http://continuum.io/downloads#py34. More detailed installation instructions can be found here: http://docs.continuum.io/anaconda/install.html

We will use Python 3 in this course. Make sure you select Python 3.4 and not Python 2.7.

Launching the Python Course

After you installed Anaconda, you launch the course by double clicking the file start-windows.bat (if you are working on Windows) or start-unix.sh (if you work with Linux) or start-osx.command (if you work on Mac OS X).

Static Notebooks

This is a fall-back method.

Chapter 1 - Getting started

Chapter 2 - First steps into text processing

Chapter 3 - Text Analysis

Chapter 4 - Programming principles

Chapter 5 - Building NLP applications

Chapter 6 - Objected Oriented Programming

Chapter 7 - Searching large Collections of Text

Chapter 8 - Practical: Searching your own PDF library

Chapter 9 - Learning from Examples

Chapter 10 - Learning without Supervision

Contributors

  • Folgert Karsdorp
  • Mike Kestemont
  • Allen Riddell