annak
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

dispersion-ice.py
text/x-python

Download raw (421 bytes)

#! /usr/bin/env python2

import nltk

file = open("../osp.work.annak.books/AK/Ice/ice-txtonly.txt", "r")
raw = file.read()
file.close()

tokens = nltk.word_tokenize(raw)

text = nltk.Text(tokens)

ice_locations = ["ice", "town", "country","north","region","High House"]
ice_names = ["girl", "husband", "warden","I", "you", "he", "she", "we", "they"]

# text.dispersion_plot(ice_locations)
text.dispersion_plot(ice_names)