1.4.1 Literary characters

Download notebook Interact

Pride and Prejudice is the story of five sisters: Jane, Elizabeth, Mary, Kitty and Lydia, and their journey through the social life of the mid-17th century. You may remember that Elizabeth ends up marrying the dashing and aloof Mr Darcy, but along the way, the feckless Lydia runs off with the equally feckless Mr Wickham, and the slightly useless Mr Bingley wants to marry Jane, the most beautiful of the sisters.

We can see when these characters appear in the book, by counting how many times their names are mentioned in each chapter.

# Count how many times the characters appear in each chapter.
counts = pd.DataFrame.from_dict({
        'Elizabeth': np.char.count(book_chapters, 'Elizabeth'),
        'Darcy': np.char.count(book_chapters, 'Darcy'),
        'Lydia': np.char.count(book_chapters, 'Lydia'),
        'Wickham': np.char.count(book_chapters, 'Wickham'),
        'Bingley': np.char.count(book_chapters, 'Bingley'),
        'Jane': np.char.count(book_chapters, 'Jane')},
    )

# The cumulative counts:
# how many times in Chapter 1, how many times in Chapters 1 and 2, and so on.
cum_counts = counts.cumsum()

# Add the chapter numbers
number_of_chapters = len(book_chapters)
cum_counts['Chapter'] = np.arange(number_of_chapters)

# Do the plot
cum_counts.plot(x='Chapter')
plt.title('Cumulative Number of Times Each Name Appears');

png

In the plot above, the horizontal axis shows chapter numbers and the vertical axis shows how many times each character has been mentioned up to and including that chapter.

Notice first that Elizabeth and Darcy are the main characters. Around chapter 13 we see Wickham and Lydia spike up, as they run away together, and mentions of Darcy flatten off, when he goes to look for them. Around chapter 50 we see Jane and Bingley being mentioned at a very similar rate, as Bingley proposes, and Jane accepts.

This page has content from the Literary_Characters notebook from the UC Berkeley course. See the Berkeley course section of the license