Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Computer Engineering Expert

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

Computer Engineering, Engineering

  • Category:- Computer Engineering
  • Reference No.:- M92724356

Have any Question?


Related Questions in Computer Engineering

While you were shopping at best buy you overhear a customer

While you were shopping at Best Buy, you overhear a customer asking one of the sales staff in the store about what is the fastest computer in the store that he can buy? The staff replies, "you're looking at our AMD machi ...

What are the differences between four types of economics

What are the differences between four types of economics evaluations and their differences with other two (budget impact analysis (BIA) and cost of illness (COI) studies)?

When is a subclass a subclasswhen programming or solving

When is a Subclass a Subclass When programming, or solving any sort of problem for that matter, abstraction plays a key role in the decision-making process. It allows you to remove irrelevant details in order to understa ...

Question which register is allowed to be used as a pointer

Question : Which register Is allowed to be used as a pointer for register indirect addressing when accessing data stored in program ROM? Give the name and show how it is used Write a program that will read the following ...

Does bmw have a guided missile corporate culture and

Does BMW have a guided missile corporate culture, and incubator corporate culture, a family corporate culture, or an Eiffel tower corporate culture?

Suppose that an algorithm takes 30 seconds for an input of

Suppose that an algorithm takes 30 seconds for an input of 224 elements (with some particular, but unspecified speed in instructions per second). Estimate how long the same algorithm, running on the same hardware, would ...

Show your steps of how you found your calculations please

Show your steps of how you found your calculations. Please type reponse. Suppose the daytime processing load consists of 60% CPU activity and 40% disk activity. Your customers are complaining that the system is slow. Aft ...

Sunland industries has a three-year bond outstanding that

Sunland Industries has a three-year bond outstanding that pays a 7.80 percent coupon rate and is currently priced at $938.80. What is the yield to maturity of this bond? Assume annual coupon payments.  (Round answer to 2 ...

Answer the following question whats the difference between

Answer the following Question : What's the difference between public, protected, and private members? What's the difference between static binding and dynamic binding?

Fifteen batteries are tested to determine whether the

Fifteen batteries are tested to determine whether the battery life is as long as advertised. Four batteries fail the test. From all fifteen batteries, two are selected at random without replacement. Find the probability ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As