ITWS-4600/ITWS-6600/MATP-4450/CSCI-4960

Slides:



Advertisements
Similar presentations
ProgressBook User Start-Up
Advertisements

Clustering Beyond K-means
Saving Power Points to Shows and Using Digital Dropbox This example is the for Earthquake Power Points.
1 Writing Assistance, Inc. ON LINE TIME SHEETS. Welcome Writing Assistance has implemented a new fast and easy way to submit your time each week via the.
BENJAMIN GAMBOA, RESEARCH ANALYST CRAFTON HILLS COLLEGE RESEARCHING: ALPHA TO ZETA.
Mark Dixon Page 1 13 – Coursework 2 Debrief: Spanish Words.
Mark Dixon, SoCCE SOFT 131Page 1 13 – Coursework 2 Debrief: Numbers Game.
Lecture 23 CSE 331 Oct 24, Temp letter grades assigned See the blog post for more details.
1 Peter Fox Data Analytics – ITWS-4963/ITWS-6965 Week 4b, February 14, 2014 Lab exercises: regression, kNN and K-means.
Grade Center Tutorial Blackboard Version 9.1 Training Dr. Wm. E. Stuermann NGU 1/11 – 12/11.
ABI Instructions- Setting up your Gradebooks *skip to slide 10 for setting up a new quarter By Sarah Rosenkrantz
1 Peter Fox Data Analytics – ITWS-4963/ITWS-6965 Week 4b, February 20, 2015 Lab: regression, kNN and K- means results, interpreting and evaluating models.
System for Administration, Training, and Educational Resources for NASA SATERN Overview for Users December 2009.
LAB.  Name : Maram ALdakheel   Web page:  O.H : --  My schedule:
Identifying At-Risk Students Gary R. Pike Information Management & Institutional Research Indiana University Purdue University Indianapolis.
Home Screen Grade Book Setup Before setting up the grade book, we need to setup the preferences. Select Preferences.
1 Peter Fox Data Analytics – ITWS-4600/ITWS-6600 Week 3b, February 12, 2016 Lab exercises /assignment 2.
Texas Assessment Management System STAAR Alternate Manage Teacher Assignments.
Information Marketing Group, Inc. Standards/Competency Based Report Cards.
Introduction to Statistics for the Social Sciences SBS200, COMM200, GEOG200, PA200, POL200, or SOC200 Lecture Section 001, Spring 2016 Room 150 Harvill.
UOP MGT 312 Week 2 Assignment The Surprising Science of Motivation NEW Check this A+ tutorial guideline at
BUS 660 Week 1 Assignment Developing Leaders at UPS Developing Leaders at UPS Read and answer the questions to the UPS case study. Submit your answers.
BSA 411 Week 4 Individual Assignment Process Analysis and System Concept Development Process Analysis and System Concept Development Submit a 3- to 4-page.
Peter Fox and Greg Hughes Data Analytics – ITWS-4600/ITWS-6600
Data Analytics – ITWS-4600/ITWS-6600
The Slides of Assignments
Group 1 Lab 2 exercises /assignment 2
THIS IS TO EVIDENCE YOUR WORK AND GET THE BEST GRADE POSSIBLE
FAQ 11 How can I look up my results on the website?
Classification, Clustering and Bayes…
Data Analytics – ITWS-4963/ITWS-6965
Linear regression project
Naviance: Do What You Are Personality Survey
How to upload completed Assessment Tasks to the website
CIS 406Competitive Success/tutorialrank.com
CIS 406 Education for Service-- tutorialrank.com.
Data Analytics – ITWS-4600/ITWS-6600/MATP-4450
Peter Fox and Greg Hughes Data Analytics – ITWS-4600/ITWS-6600
Data Analytics – ITWS-4600/ITWS-6600/MATP-4450
Group 1 Lab 2 exercises and Assignment 2
Data Analytics – ITWS-4600/ITWS-6600/MATP-4450
Weighted kNN, clustering, “early” trees and Bayesian
How Our Courses Work To progress through this slide show, simply click your mouse or use your arrow keys next back.
How to see Assessment Task grades and feedback
How to see Assessment Task grades and feedback
Classification, Clustering and Bayes…
Assignment 2 (in lab) Peter Fox and Greg Hughes
Getting Started with Google Classroom
Local Regression, LDA, and Mixed Model Lab
ITWS-4600/ITWS-6600/MATP-4450/CSCI-4960
Lecturer’s desk Projection Booth Screen Screen Harvill 150 renumbered
Lab weighted kNN, decision trees, random forest (“cross-validation” built in – more labs on it later in the course) Peter Fox and Greg Hughes Data Analytics.
ITWS-4600/ITWS-6600/MATP-4450/CSCI-4960
Welcome to Naviance at Lowell High School
Cross-validation Brenda Thomson/ Peter Fox Data Analytics
Year 2 Spring Term Week 1 Lesson 2
Welcome to Naviance at Lowell High School
Cross-validation and Local Regression Lab
Blackboard Beginner Level Training
Cross-validation and Local Regression Lab
Classification, Clustering and Bayes…
Local Regression, LDA, and Mixed Model Lab
Year 2 Spring Term Week 1 Lesson 2
Data Analytics – ITWS-4600/ITWS-6600/MATP-4450
Electronic Census Rosters
Group 1 Lab 2 exercises and Assignment 2
Computer Science Transition Work Code Skills Demonstration
Peter Fox Data Analytics ITWS-4600/ITWS-6600/MATP-4450/CSCI-4960
What’s inside… These slides are provided for GoToWebinar users. Please feel free to adapt these slides for your personal use and add them to your own.
Phase I Research & Design Phase II Development & Implementation
Presentation transcript:

ITWS-4600/ITWS-6600/MATP-4450/CSCI-4960 Assignment 2 (in lab) Peter Fox Data Analytics ITWS-4600/ITWS-6600/MATP-4450/CSCI-4960 Week 3, September 14, 2018

Lab consists of Regression kNN Kmeans Need all three for Assignment 2 New multivariate dataset kNN New Abalone dataset Kmeans (Sort of) New Iris dataset Need all three for Assignment 2

The Dataset(s) http://aquarius.tw.rpi.edu/html/DA Two new ones; dataset_multipleRegression.csv, abalone.csv And …. Visit this link: http://aquarius.tw.rpi.edu/html/DA/group1 Code fragments, i.e. they will not run as-is, on the following slides as Lab2_knn1.R, etc.

How does this work? Following slides have 3 tasks for you to complete: individually Once you complete (one or all), please raise your hand or approach me, or Akshay to review what you obtained (10% of grade) There is nothing to hand in* if you complete it today *If you do not complete part/all today that is okay but you will need to schedule a time to show your results or submit via LMS = screen shots and descriptions

Regression (1) Retrieve this dataset: dataset_multipleRegression.csv Using the unemployment rate (UNEM) and number of spring high school graduates (HGRAD), predict the fall enrollment (ROLL) for this year by knowing that UNEM=7% and HGRAD=90,000. Repeat and add per capita income (INC) to the model. Predict ROLL if INC=$25,000 Summarize and compare the two models. Comment on significance

Classification (2) Retrieve the abalone.csv dataset Predicting the age of abalone from physical measurements. The age of abalone is determined by cutting the shell through the cone, staining it, and counting the number of rings through a microscope: a boring and time-consuming task. Other measurements, which are easier to obtain, are used to predict the age. Perform knn classification to get predictors for Age (Rings). Interpretation not required.

Clustering (3) The Iris dataset (in R use data(“iris”) to load it) The 5th column is the species and you want to find how many clusters without using that information Create a new data frame and remove the fifth column Apply kmeans (you choose k) with 1000 iterations Use table(iris[,5],<your clustering>) to assess your results