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

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?

Rebecca borrows 10000 at 18 compounded annually she pays

Rebecca borrows $10,000 at 18% compounded annually. She pays off the loan over a 5-year period with annual payments, starting at year 1. Each successive payment is $700 greater than the previous payment. (a) How much was ...

Jeff decides to start saving some money from this upcoming

Jeff decides to start saving some money from this upcoming month onwards. He decides to save only $500 at first, but each month he will increase the amount invested by $100. He will do it for 60 months (including the fir ...

Suppose you make 30 annual investments in a fund that pays

Suppose you make 30 annual investments in a fund that pays 6% compounded annually. If your first deposit is $7,500 and each successive deposit is 6% greater than the preceding deposit, how much will be in the fund immedi ...

Question -under what circumstances is it ethical if ever to

Question :- Under what circumstances is it ethical, if ever, to use consumer information in marketing research? Explain why you consider it ethical or unethical.

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)?

What type of economic system does norway have explain some

What type of economic system does Norway have? Explain some of the benefits of this system to the country and some of the drawbacks,

Among the who imf and wto which of these governmental

Among the WHO, IMF, and WTO, which of these governmental institutions do you feel has most profoundly shaped healthcare outcomes in low-income countries and why? Please support your reasons with examples and research/doc ...

A real estate developer will build two different types of

A real estate developer will build two different types of apartments in a residential area: one- bedroom apartments and two-bedroom apartments. In addition, the developer will build either a swimming pool or a tennis cou ...

Question what some of the reasons that evolutionary models

Question : What some of the reasons that evolutionary models are considered by many to be the best approach to software development. The response must be typed, single spaced, must be in times new roman font (size 12) an ...

  • 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