Question

You will utilize your Python environment to derive structure from unstructured data. You will utilize the...

You will utilize your Python environment to derive structure from unstructured data. You will utilize the given data set.

Using this data set, you will create a text analytics Python application that extracts themes from each comment using term frequency–inverse document frequency (TF–IDF) or simple word counts. For the deliverable, provide your Python file and a .csv with your results added as a column to the original data set.

* I am unable to provide the data set itself, as I can't post a link or a .csv file, so a generic python script is what I am looking for

Response to comment: What do you mean by search?

Homework Answers

Answer #1
Below is a screen shot of the python program to check indentation. Comments are given on every line explaining the code.

Below is the output of the program:


Below is the screenshot of "brown.csv":

Below is the code to copy:
#CODE STARTS HERE----------------
from nltk.corpus import brown #import brown corpus data for testing.
import pandas as pd
#Using sklearn library to calculate tfidf
from sklearn.feature_extraction.text import TfidfVectorizer

#Download dataset
demo_document = brown.sents(categories=['news'])
dataset = []
for demo in demo_document[:100]:
   dataset.append(" ".join(demo))

#Print first 15 documents of the dataset
print("DEMO DATASET:")
for i in range(15):
   print(i,dataset[i])

#fit_transform will calculate the idf-idf scores
model = TfidfVectorizer(use_idf=True)
tfIdf = model.fit_transform(dataset)

#Print tf-idf of first 15 documents of the dataset
print("\nTF-IDF VALUES:")
df = pd.DataFrame(tfIdf[:15].todense(), columns=model.get_feature_names())
print (df)

#Export dataframe to .csv
export_df = pd.DataFrame(tfIdf.todense(), columns=model.get_feature_names())
export_df.to_csv("brown.csv")
#CODE ENDS HERE------------------
Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
During your second Individual Project (IP), you will utilize your Python environment to derive structure from...
During your second Individual Project (IP), you will utilize your Python environment to derive structure from unstructured data. You will utilize the data set "Airline Sentiment" from Kaggle located at Kaggles website. From Welkin10, the dataset "Airline Sentiment". /welkin10/airline-sentinment Using this data set, you will create a text analytics Python application that extracts themes from each comment using term frequency–inverse document frequency (TF–IDF) or simple word counts. For the deliverable, provide your Python file and a .csv with your results...
Write a Python 3 program called “parse.py” using the template for a Python program that we...
Write a Python 3 program called “parse.py” using the template for a Python program that we covered in this module. Note: Use this mod7.txt input file. Name your output file “output.txt”. Build your program using a main function and at least one other function. Give your input and output file names as command line arguments. Your program will read the input file, and will output the following information to the output file as well as printing it to the screen:...
In this problem you will use the cursor tracker code from the previous homework assignment to...
In this problem you will use the cursor tracker code from the previous homework assignment to measure frequency responses to various sinusoidal inputs and then generate a Bode plot. Use the Matlab file track cursor.m provided on Blackboard for a proportional controller with K = 0.1. After the tracker equilibrates, generate a sinusoidal input by moving the cursor back and forth and determine the gain and phase. The gain is the ratio of the amplitude of the output sinusoid over...
This laboratory assignment involves implementing a data structure called a map. A map associates objects called...
This laboratory assignment involves implementing a data structure called a map. A map associates objects called keys with other objects called values. It is implemented as a Java class that uses arrays internally. 1. Theory. A map is a set of key-value pairs. Each key is said to be associated with its corresponding value, so there is at most one pair in the set with a given key. You can perform the following operations on maps. You can test if...
What are your top 3 take aways from this article? Technology is no longer just for...
What are your top 3 take aways from this article? Technology is no longer just for geeks. The internet has changed everything, including marketing. Be they small, medium or large, social media grants all companies an equal playing field on which to organically reach new customers. However, success will always ride on the marketing strategy employed. Obviously, larger companies have the advantage of bigger budgets and more resources. But that doesn’t mean social media for small business owners can’t compete...
Task 1: You will modify the add method in the LinkedBag class.Add a second parameter to...
Task 1: You will modify the add method in the LinkedBag class.Add a second parameter to the method header that will be a boolean variable: public boolean add(T newEntry, boolean sorted) The modification to the add method will makeit possible toadd new entriesto the beginning of the list, as it does now, but also to add new entries in sorted order. The sorted parameter if set to false will result in the existing functionality being executed (it will add the...
Please answer the following Case analysis questions 1-How is New Balance performing compared to its primary...
Please answer the following Case analysis questions 1-How is New Balance performing compared to its primary rivals? How will the acquisition of Reebok by Adidas impact the structure of the athletic shoe industry? Is this likely to be favorable or unfavorable for New Balance? 2- What issues does New Balance management need to address? 3-What recommendations would you make to New Balance Management? What does New Balance need to do to continue to be successful? Should management continue to invest...