Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 1 1. Write a python program to collect text data from either of the following sources and save the data into a csv file

Question 1

1. Write a python program to collect text data from either of the following sources and save the data into a csv file:

(1) Collect all the customer reviews of the product 2019 Dell labtop on amazon.

(2) Collect the top 100 User Reviews of the film Joker from IMDB.

(3) Collect the abstracts of the top 100 research papers by using the query natural language processing from CiteSeerX.

(4) Collect the top 100 tweets by using hashtag "#CovidVaccine" from Twitter.

Question 2

Write a python program to clean the text data you collected above and save the data in a new column in the csv file. The data cleaning steps include:

(1) Remove noise, such as special characters and punctuations.

(2) Remove numbers.

(3) Remove stopwords by using the stopwords list.

(4) Lowercase all texts

(5) Stemming.

(6) Lemmatization.

Question 3

Write a python program to conduct syntax and structure analysis of the clean text you just saved above. The syntax and structure analysis includes:

(1) Parts of Speech (POS) Tagging: Tag Parts of Speech of each word in the text, and calculate the total number of N(oun), V(erb), Adj(ective), Adv(erb), respectively.

(2) Constituency Parsing and Dependency Parsing: print out the constituency parsing trees and dependency parsing trees of all the sentences. Using one sentence as an example to explain your understanding about the constituency parsing tree and dependency parsing tree.

(3) Named Entity Recognition: Extract all the entities such as person names, organizations, locations, product names, and date from the clean texts, calculate the count of each entity.

Note: Questions 1&2 have been answered. I only need question 3

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Analysis Using SQL And Excel

Authors: Gordon S Linoff

2nd Edition

111902143X, 9781119021438

More Books

Students also viewed these Databases questions