INFO411/911: Data mining and Knowledge Discovery Assignment One | Homework Solution - Grade One Essays

INFO411/911: Data mining and Knowledge Discovery Assignment One | Homework Solution

INFO411/911: Data mining and Knowledge Discovery Assignment One (15%)

Autumen 2023

Due: 11:30pm, Sunday, 23 April 2023 via Moodle

Don't use plagiarized sources. Get Your Custom Essay on
INFO411/911: Data mining and Knowledge Discovery Assignment One | Homework Solution
Just from $13/Page
Order Essay

General Instructions: Please Read Carefully

  • Submit a single PDF document which contain your answers to the questions of both tasks. All questions are to be answered. An clear and complete explanation and analysis needs to be provided with each
  • The PDF must contain typed text of your answer (do not submit a scan of a handwritten document, any handwritten document will be ignored). The document can include computer generated graphics and illustrations (hand drawn graphics and illustrations will be ignored).
  • The PDF document of your answers should be no more than 12 pages including all graphs and If it is over 12 pages, only the first 12 pages will be marked. In other words, marks are only based the first 12 pages. The size limit for this PDF document is 20MB.
Overview:

This assignment consists of two tasks. There are several questions to be answered for each of the two tasks. You may need to do some research on background information for this assignment. For example, you may need to develop a deeper understanding of writing code in R, or study the general characteristics of GPS, obtain general geographic information about Rome, and study other topics that are related to the tasks in this assignment.

What you need:

  • The R software package (RStudio is optional), the file zip from the Moodle site.
  • Task One (8 marks)
    • csv.zip that can be downloaded from this folder INFO911 Caution: The file taxi.csv.zip is 263MB in size, uncompressed the file is 1.2GB in size!
  • Task Two (7 marks)
    • csv inside file a1.zip
    • Successful completion of You may use the R-script from the labs as a basis for attempting this question.

Task One

Preface: The analysis of results from urban mobility simulations can provide very valuable information for the identification and addressing of problems in an urban road network. Public transport vehicles such as busses and taxis are often equipped with GPS location devices and the location data is submitted to a central server for analysis.

The metropolitan city of Rome, Italy collected location data from 320 taxi drivers that work in the center of Rome. Data was collected during the period from 01/Feb/2014 until 02/March/2014. An extract of the dataset is found in taxi.csv. The dataset contains 4 attributes:

  1. ID of a taxi This is a unique numeric ID.
  2. Date and time in the format Y:m:d H:m:s.msec+tz, where msec is micro-seconds, and tz is a time-zone (You may have to change the format of the date into one that R can understand).
  3. Latitude
  4. Longitude

For a further description of this dataset: https://ieee-dataport.org/open-access/crawdad-romataxi

Purpose of this task:

Perform a general analysis of this dataset. Learn to work with large datasets. Obtain general information of the behaviour of some taxi drivers. Analyse and interpret results. This task also serves as a preparation for projects that will be based on this dataset.

Questions:

By using the data in taxi.csv perform the following tasks:

  • Plot the location points (2D plot using all of the latitude,longitude value pairs in the dataset). Clearly indicate points that are invalid, outliers or noise The plot should be informative! Clearly explain the rationale that you used when identifying invalid points, noise points, and outliers.

Remove invalid points, outliers and noise points before answering the subsequent questions.

  • Compute the minimum, maximum, and mean location
  • Obtain the most active, least active, and average activity of the taxi drivers (most time driven, least time driven, and mean time driven) . Explain the rationale of your approach and explain your
  • Look up the file txt. Use the taxi ID that is listed next to your Student Number to answer the following questions:
    1. Plot the location points for taxi=ID
    2. Compare the mean, min, and max location value of taxi=ID with the global mean, min, and
  • Compare total time driven by taxi=ID with the global mean, min, and max
  1. Compute the distance traveled by taxi=ID.
    Get Exploration Document Homework Help!!

To compute the distance between two points on the surface of the earth use the following method:

Assume that R=6,371,000 meters.

With each of your answers: Explain what knowledge can be derived from your answer.

Task Two

Preface: Banks are often posed with a problem to whether or nor a client is credit worthy. Banks commonly employ data mining techniques to classify a customer into risk categories such as category A (highest rating) or category C (lowest rating).

A bank collects data from past credit assessments. The file “creditworthiness_data_with_labels.csv” contains 1962 of such assessments. Each assessment lists 46 attributes of a customer. The last attributes “credit rating” is the result of the assessment. Open the file and study its contents. You will notice that the columns are coded by numeric values. The meaning of these values is defined in the file “definitions.txt”. For example, a value 3 in the last column means that the customer credit worthiness is rated “C”. Any value of attributes not listed in definitions.txt is “as is”.

This poses a “prediction” problem. A machine is to learn from the outcomes of past assessments and, once the machine has been trained, to assess any customer who has not yet been assessed.

Purpose of this task:

You are to start with an analysis of the general properties of this dataset by using suitable visualization and clustering techniques (i.e. Such as those introduced during the lectures), and you are to obtain an insight into the degree of difficulty of this prediction task. Then you are to design and deploy an appropriate supervised prediction model (i.e. MLP as will be used in the lab of week 5) to obtain a prediction of customer ratings.

Question 1: Statistical analysis and visualization                                                                    (3 marks)

Analyse the general properties of the dataset and obtain an insight into the difficulty of the prediction task. Create a statistical analysis of the attributes and their values, then list 5 of the most interesting (most valuable) attributes. Explain the reasons that make these attributes interesting.

A set of R-script files are provided with this assignment (included in the zip-file). These are similar to the scripts used in Week 3 Lab2. You can also develop your own scripts or use scripts from other sources. The scripts provided may allow you to produce some first results. However, virtually none of the parameters used in these scripts are suitable for obtaining a good insight into the general properties of the given dataset.

Hence if you to use them, you need to modify the scripts such that informative results can be obtained from which conclusions about the learning problem can be made. Note that finding a good set of parameters is often very time consuming in data mining. An additional challange is to make a correct interpretation of the results.

This is what you need to do: identify am aapproach and find a good set of parameters (i.e. through a trial and error approach), obtain informative results then offer an interpretation of the results. Summarize your approach to conducting the experiments, explain your results, and offer a meaningful interpretation of the results. Do not forget that you are also to provide an insight into the degree of difficulty of this learning problem (i.e. from the results that you obtained, can it be expected that a prediction model will be able to achieve a 100% prediction accuracy?). Always explain your answers succinctly.

Note that when you use SOM (an unsupervised learning method) to analyse the data, the last column of the data (i.e., “credit rating”) shall not be included because it is class label, which will be used in the following supervised task.

Question 2: Prediction using MLP                                                                                          (4 marks)

Deploy a prediction model to predict the credit worthiness of customers which have not yet been assessed. The prediction capabilities of the MLP in Lab4 was not good enough. Your task is to:

  1. Randomly split the data such that 80% is used for training and 20% is reserved for test.
  2. Train MLP(s) and report your prediction result on the test set. Give an interpretation of your results.
    What is the best classification accuracy (expressed in % of correctly classified data) that you can
    achieve on the test set?
  3. Describe any strategies that you have tried in order to increase the accuracy of predicting the
    credit rating. Explain why your strategy can be expected to increase the prediction capability.
  4. You will find that 100% accuracy cannot be obtained on the test data. Explain reasons to why a
    100% accuracy could not be obtained. What can you do to further improve the prediction accuracy for this prediction task?

Note that in this assignment the term “prediction capabilities” refer to a model’s ability to predict the credit rating of samples that were not used to train the model (i.e. samples in a test set).

INFO411/911: Data mining and Knowledge Discovery Assignment One (15%)

Order NOW to get 15% Discount!

Pages
0.00

Why Choose Us

Quality Papers

We value our clients. For this reason, we ensure that each paper is written carefully as per the instructions provided by the client. Our editing team also checks all the papers to ensure that they have been completed as per the expectations.

Professional Academic Writers

Over the years, our Acme Homework has managed to secure the most qualified, reliable and experienced team of writers. The company has also ensured continued training and development of the team members to ensure that it keep up with the rising Academic Trends.

Affordable Prices

Our prices are fairly priced in such a way that ensures affordability. Additionally, you can get a free price quotation by clicking on the "Place Order" button.

On-Time delivery

We pay strict attention on deadlines. For this reason, we ensure that all papers are submitted earlier, even before the deadline indicated by the customer. For this reason, the client can go through the work and review everything.

100% Originality

At Grade One Essays, all papers are plagiarism-free as they are written from scratch. We have taken strict measures to ensure that there is no similarity on all papers and that citations are included as per the standards set.

Customer Support 24/7

Our support team is readily available to provide any guidance/help on our platform at any time of the day/night. Feel free to contact us via the Chat window or support email: support@gradeoneessays.com.

Try it now!

Calculate the price of your order

We'll send you the first draft for approval by at
Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

Our Services

Grade One Essays has stood as the world’s leading custom essay writing services providers. Once you enter all the details in the order form under the place order button, the rest is up to us.

Essays

Essay Writing Services

At Grade One Essays, we prioritize on all aspects that bring about a good grade such as impeccable grammar, proper structure, zero-plagiarism and conformance to guidelines. Our experienced team of writers will help you completed your essays and other assignments.

Admissions

Admission and Business Papers

Be assured that you’ll definitely get accepted to the Master’s level program at any university once you enter all the details in the order form. We won’t leave you here; we will also help you secure a good position in your aspired workplace by creating an outstanding resume or portfolio once you place an order.

Editing

Editing and Proofreading

Our skilled editing and writing team will help you restructure you paper, paraphrase, correct grammar and replace plagiarized sections on your paper just on time. The service is geared toward eliminating any mistakes and rather enhancing better quality.

Coursework

Technical papers

We have writers in almost all fields including the most technical fields. You don’t have to worry about the complexity of your paper. Simply enter as much details as possible in the place order section.