How many primary types are in the data

Assignment Help Computer Engineering
Reference no: EM131896009

Assignment

Part-1: Answer the following questions using UNIX.

The dataset (in a file named ChicagoCrimes.csv) that we will use is about crimes in Chicago. It has the following attributes: ID, Case Number, Date, Block, IUCR (Illinois Uniform Crime Reporting), Primary Type, Description, Location Description, Arrest, Domestic, Beat, District, Ward, Community Area, FBI Code, X Coordinate, Y Coordinate, Year, Updated On, Latitude, Longitude, Location.

1. How many primary types are in the data?

2. How many are described as "ATTEMPT THEFT"? How many of those resulted in arrests?

3. Extract all the assault cases (those with primary type "ASSAULT"), sort them by district number and store those records in a separate file.

4. Which are the three most dangerous districts and the three safest in the data?

Make sure to show your UNIX commands for each of these questions. Use any portion of the data used or produced as a way to support your answers (e.g., showing the first or last few records of the data). But you do not need to submit any resulting files from running these commands.

Part-2: Answer the following questions using R.

We will work with a dataset about population estimates. See the attached document Polulation.zip, which has two files -- Population.csv with the dataset and Population.pdf with details of this data and various attributes.

1. Plot a bar chart with top 5 states that have the highest number of international immigration for 2010, 2012, and 2014. (Hint: look for fields INTERNATIONALMIG2010, INTERNATIONALMIG2012, and INTERNATIONALMIG2014)

2. Plot a line graph - population trends over time by (1) region, and (2) division. (Hint: You need to sum the population by region and division. Plotting the line graph with the retrieved dataset may need some data reshaping.)

3. What are the divisions that show the highest increasing rate for population (1) between 2011 and 2012, and (2) between 2013 and 2014?

Copy your R code as well as the outcomes.

Part-3: Answer the following questions using Python.

We will use Online News Popularity dataset for this. Attached is a zip file OnlineNewsPopularity.zip. It contains a csv file and a text file. The former has the data and the latter has the description of the dataset.

1. [Regression] Here, the target variable is ‘shares,' which refers to the number of shares. Do correlation analysis with it and other variables in the dataset to find the most relevant (related) factor (make sure this variable is continuous). Build a regression model using these variables to predict 'shares'. Report the model.

Hint: Try ‘abs_title_sentiment_polarity' for the most relevant factor. You should use that for regression with ‘shares'.

2. [Regression] Make a subset of online news that was published on weekends. Do correlation analysis with 'shares' and other variables in the dataset to find the two most related factors, and build a regression model using these variables to predict 'shares'. Report the model.

3. [Regression] Make a subset of online news that was published on weekdays. Do correlation analysis with 'shares' and other variables in the dataset to find the two most related factors, and build a regression model using these variables to predict 'shares'. Report the model.

4. [Model comparison] Compare the two models from the previous two questions (weekend vs. weekdays) regarding what affects the online news popularity. Report the model (provide your interpretations as you compare those two models).

5. [Clustering] Divide the dataset into two clusters, one having less than 1400 shares, and the other having equal to or greater than 1400 shares. Extract the two features you have from the first question, and show a 2D plot with clusters marked.

Hint: Here's how you can create the required subsets.
newsdata_low = newsdata[newsdata.shares<1400]
newsdata_high = newsdata[newsdata.shares>=1400]

We need two most relevant features to do the plotting. If you had followed the exploration process for Question-1, you should have found those two features. Try ‘title_subjectivity' as the next one (after trying ‘abs_title_sentiment_polarity').

6. [Clustering] Do clustering using two different parameters (k values) for k-means. Show the plots with clusters marked. Provide your interpretations of these two clustering methods in 2-4 sentences comparing them qualitatively.

Hint: select the two columns represented by those two factors we used in Q5.

You can specify a particular point's coordinate like:

newsdata_clustering.iloc[i,0], newsdata_clustering.iloc[i,1]

where i means the row index, 0 refers to 0th column (abs_title_sentiment_polarity), and 1 refers to 1st column (title_subjectivity).

7. [Classification] For classification, take only the two features you've gotten from the first question. Split the dataset into 70% for training and 30% for test using kNN. Show the resulting accuracies with three different values of k.

Hint: To get the classification accuracy, we need the correct label, ‘high' or ‘low' shares, for each instance. Let's get a column and mark if a news item was popular or not.

newsdata_low_extracted['pop'] = 0
newsdata_high_extracted['pop'] = 1

Put this data together in a dataframe.

frames = [newsdata_low_extracted, newsdata_high_extracted]
newsdata_classification = pd.concat(frames)

Now, get our predictors and response variables.

X = newsdata_classification.iloc[:,0:2]
y = newsdata_classification['pop']
Copy your Python code as well as the outcomes.

Attachment:- S-O-S.zip

Reference no: EM131896009

Questions Cloud

What the amount of its direct and deemed direct tax credit : The tax rate in the United States is 34 percent, If the subsidiary declares a 100% dividend, what is the amount of its direct and deemed direct tax credit
What is the taxable income for the corporation for 2014 : Peanut Corporation reports the following information for 2014: Net Income per books 120,000 .Dividends paid to shareholders 500.
Review problem related to car lot : Nina owns a used car lot. She signs and sends a fax to Seth, a used car wholesaler who has a huge lot of cars in the same city.
Deal with conventional roles of the 21st century : How do women or men today have to deal with conventional roles of the 21st century?
How many primary types are in the data : How many primary types are in the data? How many are described as "ATTEMPT THEFT"? How many of those resulted in arrests?
What is the net amount of vat paid by the wholesaler : The markup on the merchandise is £10. What is the net amount of VAT paid by the wholesaler to Customs and Excise
Choose any one of hamlet''s soliloquies and analyze it : Choose any one of Hamlet's soliloquies and analyze it. What thoughts and feelings does Hamlet express? What theme or themes in the play does it contribute to?
What is the amount of cash that lewis will receive : Assume that Lewis International sells running shoes to a British importer on June 1, What is the amount of cash that Lewis will receive for the sale
What is unique about making a business-to-business sale : What is unique or noteworthy about making a business-to-business (B2B) sale, as compared to selling to individuals or family units?

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd