Data Mining Assignment 2
Due date: 03/28/2016 11:59 pm
Instructions: This is an individual assignment. Use Blackboard to submit your answers on the due date (no hard copies please). Late submissions will receive a zero grade.
Experimentation with Classification: Choose a dataset that is well suited for classification. You can use any dataset that you would like to classify. A good number of datasets can be found in the UCI machine learning data repository but feel free to use any dataset that you want. Make sure that you select a dataset that has a class variable. Then use a tool such as R, Weka, or RapidMiner to classify the dataset. The specific requirements for the assignment are as follows:
Choose a dataset that is of interest to you and is well suited for classification
Give a brief description of the dataset
Test at least 3 classification algorithms. There are many algorithms available for R, Weka, RapidMiner, and KNIME.
oA good resource for R can be found at the Data Mining Algorithms in R Wikibook
http://en.wikibooks.org/wiki/Data_Mining_Algorithms_In_R/Classification
oAlso the caret package in R would is a great place to start experimenting with classification methods.
Design an experiment using training and testing (holdout method), cross-validation, and the bootstrap method.
Compare the results of three or more classification methods using the same experimental setup using one or more classification evaluation methods discussed in class. The metrics that you choose are up to you and can include accuracy, error rate, sensitivity, specificity, precision, recall, and F measure.
Write a report that describes your experiment and results. The report should be in either ACM or IEEE conference paper format and should include an introductory section that details the dataset and the objectives of the analysis, a methodology section that explains the approach that you are using to mine the dataset including the algorithms and parameters (e.g. confidence and support) as well as any steps that you had to take to preprocess the data, a results section that shows the results of your analysis and any interesting patterns that you found, and a conclusion section that summarizes your results and discusses the limitations of your approach and any difficulties that you had with your experiment.
oLinks to format templates:
ohttp://www.ieee.org/conferences_events/conferences/publishing/templates.html
ohttp://www.acm.org/sigs/publications/proceedings-templates
———-
Added on 25.03.2016 08:32
Please write the essay accordingly to the attached file requirement amd provided the required format of essay. Better use Latex Editor to make it looks professional. Thanks
Last Completed Projects
| topic title | academic level | Writer | delivered |
|---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });

