In this particularproject, we are going to work on the inaugural corpora from the nltk in Python.We will be looking at the following speeches of the Presidents of the UnitedStates of America:...

1 answer below »


In this particular project, we are going to work on the inaugural corpora from the nltk in Python. We will be looking at the following speeches of the Presidents of the United States of America:




  1. President Franklin D. Roosevelt in 1941


  2. President John F. Kennedy in 1961


  3. President Richard Nixon in 1973



(Hint: use .words(), .raw(), .sent() for extracting counts)



2.1 Find the number of characters, words, and sentences for the mentioned documents. – 3 Marks



2.2 Remove all the stopwords from all three speeches. – 3Marks



2.3 Which word occurs the most number of times in his inaugural address for each president? Mention the top three words.(after removing the stopwords) – 3Marks



2.4 Plot the word cloud of each of the speeches of the variable. (after removing the stopwords) – 3Marks [ refer to the End-to-End Case Study done in the Mentored Learning Session ]



Code Snippet to extract the three speeches:


"
import nltk
nltk.download('inaugural')
from nltk.corpus import inaugural
inaugural.fileids()
inaugural.raw('1941-Roosevelt.txt')
inaugural.raw('1961-Kennedy.txt')
inaugural.raw('1973-Nixon.txt')
"





Answered Same DayAug 24, 2022

Answer To: In this particularproject, we are going to work on the inaugural corpora from the nltk in...

Uhanya answered on Aug 25 2022
64 Votes
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here