Labs: Dimension Reduction, Factor Analysis

Slides:



Advertisements
Similar presentations
The Important Thing About By. The Important Thing About ******** The important thing about ***** is *****. It is true s/he can *****, *****, and *****.
Advertisements

Look what I did! date page began___________ Dr. Foxs signature and date: ________________ time:_____.
This algorithm is used for dimension reduction. Input: a set of vectors {Xn є }, and dimension d,d
Seventh Grade Science Mr. Dillon Room 14 Maywood Middle School (indicate a subject) Voice mail: x3114.
1 Peter Fox Data Analytics – ITWS-4963/ITWS-6965 Week 10b, April 10, 2015 Labs: Cross Validation, RandomForest, Multi- Dimensional Scaling, Dimension Reduction,
QUME 185 File Management. 2 Where did I save it? Managing files and folders is one of the most important computer skills The essential skills: Create*
Fig Reflection and refraction for the case where n a < n b. glassair © 2003 J. F. Becker San Jose State University Physics 52 Heat and Optics.
TC 310 The Computer in Technical Communication Dr. Jennifer Turns Week 6, Day 1 (5/5)
SVM Lab material borrowed from tutorial by David Meyer FH Technikum Wien, Austria see:
Information Systems … … Your future begins here with a degree that focuses on real world skills.
1 Peter Fox Data Analytics – ITWS-4963/ITWS-6965 Week 10a, April 1, 2014 Support Vector Machines.
Week Nine Week Nine focuses on Collecting Images and Web Page URLs to use for your final Web Page Project. Discussions on using Netscape Communicator Composer.
1 Peter Fox Data Analytics – ITWS-4963/ITWS-6965 Week 10b, April 4, 2014 Lab: More on Support Vector Machines, Trees, and your projects.
1 Peter Fox Data Analytics – ITWS-4963/ITWS-6965 Week 11a, April 7, 2014 Support Vector Machines, Decision Trees, Cross- validation.
Warm up Simplify: -(2x + 3) + 4(x + 2) A – 2 – ( 3 + a) Solve: 13m – 22 = 9m -6.
Real Audio File Link:.RA file Open blank page Open “Windows Explorer” Find and Move the file onto your PowerPoint page (This screen connected to a WEB.
LAB 01: DATA WRANGLING WITH PYTHON September 21, 2015 SDS 235 Visual Analytics.
OSP201: Creating Self- Service BI Solutions with SharePoint Server 2010 Peter Myers.
SVM Lab material borrowed from tutorial by David Meyer FH Technikum Wien, Austria see:
Peeking at Programming with JavaScript. So what’s JavaScript ? A programming language built into your Web Browser program. Adds fun and interactivity.
1 Peter Fox GIS for Science ERTH 4750 (98271) Week 7, Friday, March 9, 2012 Lab: assignment (10%)
Source Page US:official&tbm=isch&tbnid=Mli6kxZ3HfiCRM:&imgrefurl=
Web Analytics mini case study Mitchell Teixeira
LibQUAL+ ® Survey Results Presented by: Martha Kyrillidou Senior Director, Statistics and Service Quality Programs Association of Research.
Lab 0 – Uncertainties of Experimental Data Objectives: Learn how to find the lab instructions Learn how to express uncertainty in standard form Learn how.
Путешествуй со мной и узнаешь, где я сегодня побывал.
1 Peter Fox Data Analytics – ITWS-4600/ITWS-6600 Week 11a, April 12, 2016 Interpreting: MDS, DR, SVM Factor Analysis; and Boosting.
Peter Fox and Greg Hughes Data Analytics – ITWS-4600/ITWS-6600
Lab exercises: beginning to work with data: filtering, distributions, populations, significance testing… Peter Fox and Greg Hughes Data Analytics – ITWS-4600/ITWS-6600.
Group 1 Lab 2 exercises /assignment 2
Classification, Clustering and Bayes…
You’ve created an e-Learning resource...
Assignment 8: due Use Weka to classify beer-bottle glass by brewery
Interpreting: MDS, DR, SVM Factor Analysis
Page 1. Page 2 Page 3 Page 4 Page 5 Page 6 Page 7.
Labs: Dimension Reduction, Factor Analysis
Labs: Dimension Reduction, Multi-dimensional Scaling, SVM
Peter Fox Data Analytics – ITWS-4600/ITWS-6600 Week 9b, April 1, 2016
Data Analytics – ITWS-4600/ITWS-6600/MATP-4450
Group 1 Lab 2 exercises and Assignment 2
Peter Fox and Greg Hughes Data Analytics – ITWS-4600/ITWS-6600
Data Analytics – ITWS-4600/ITWS-6600/MATP-4450
Labs: Dimension Reduction, Multi-dimensional Scaling, SVM
Interpreting: MDS, DR, SVM Factor Analysis
AP Bio Lab Day AP Lab 7 The Fruit Fly Pearson's If VGLII is too Lab &
علم النفس التحليلي كارل غوستاف يونغ
Cross-validation and Local Regression Lab
Peter Fox Data Science – ITWS/CSCI/ERTH 4350/6350 Module 2, Fall 2017
Classification, Clustering and Bayes…
Assignment 2 (in lab) Peter Fox and Greg Hughes
Data Analytics – ITWS-4600/ITWS-6600/MATP-4450
Local Regression, LDA, and Mixed Model Lab
Interpreting: MDS, DR, SVM Factor Analysis
ITWS-4600/ITWS-6600/MATP-4450/CSCI-4960
Labs: Trees, Dimension Reduction, Multi-dimensional Scaling, SVM
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.
Point-in-time balances Physical database Aggregation ETL Architecture
SelfPackaging SELFPACKAGING USA STRATEGY.
Peter Fox Data Analytics – ITWS-4600/ITWS-6600 Week 10b, April 8, 2016
Cross-validation and Local Regression Lab
ITWS-4600/ITWS-6600/MATP-4450/CSCI-4960
Cross-validation and Local Regression Lab
AP Bio Lab Day AP Lab 7 The Fruit Fly Pearson's Lab & Do 1st. VGLII
Classification, Clustering and Bayes…
Local Regression, LDA, and Mixed Model Lab
Unit 4 The Web Book Test.
Data Analytics – ITWS-4600/ITWS-6600/MATP-4450
ITWS-4600/ITWS-6600/MATP-4450/CSCI-4960
Group 1 Lab 2 exercises and Assignment 2
Data Analytics course.
Presentation transcript:

Labs: Dimension Reduction, Factor Analysis Peter Fox and Greg Hughes Data Analytics – ITWS-4600/ITWS-6600 Group 3 Lab 3, March 23, 2017

Factor Analysis, DR lab3_fa1.R lab1_dr1.R # real life research example

Glass index <- 1:nrow(Glass) testindex <- sample(index, trunc(length(index)/3)) testset <- Glass[testindex,] trainset <- Glass[-testindex,] # you’ve used this for classification, now…. cor(Glass[,-10]) prcomp(Glass[,-10]) Factor Analysis? How many factors? Dimension reduction?

Swiss data(swiss) # fertility? cor(swiss) prcomp(swiss) # others? Factor Analysis? How many factors? Dimension reduction?

SPSS files On web page: html/DA personality.sav, and SAQ.sav (Band Personality.sav) require(psych); require(foreign); # Import data from SPSS data file.personality <- foreign::read.spss("personality.sav", to.data.frame = TRUE) Explore with psych:VSS routines Do factor analysis, looking for ~ 5 factors, use rotation