Information Technology > QUESTIONS & ANSWERS > Georgia Tech Intro to Analytics Modeling(ISYE6501) HW2. Graded A+ (All)

Georgia Tech Intro to Analytics Modeling(ISYE6501) HW2. Graded A+

Document Content and Description Below

Intro to Analytics Modeling(ISYE6501) HW2 Question 4.1 Describe a situation or problem from your job, everyday life, current events, etc., for which a clustering model would be appropriate. List so... me (up to 5) predictors that you might use. Answer: In my previous job at consulting, we were trying to help our client to find out where they should be opening language school franchise. Some predictors could be: 1) distance from a community college , 2) distance from a freeway, 3) number of parking lots, 4) number of public transportations, 5) average traffic time, and etc. Question 4.2 The iris data set iris.txt contains 150 data points, each with four predictor variables and one categorical response. The predictors are the width and length of the sepal and petal of flowers and the response is the type of flower. The data is available from the R library datasets and can be accessed with iris once the library is loaded. It is also available at the UCI Machine Learning Repository (https://archive.ics.uci.edu/ml/datasets/Iris ). The response values are only given to see how well a specific method performed and should not be used to build the model. 1) Use the R function kmeans to cluster the points as well as possible. 2) Report the best combination of predictors, your suggested value of k, and 3) how well your best clustering predicts flower type. #HW 4.2 #install.packages("ggplot2",dependencies=TRUE) #install.packages("kernlab") #install.packages('plyr',repos="http://cran.us.r-project.org") #markdown #install.packages("readxl") #markdown #install.packages("MikTek") summary(iris) # 4 variables of 150 observations head(iris) # view heads library(ggplot2) #scatter plot theme_set(theme_bw()) ggplot(iris,aes(x = Sepal.Length, y = Sepal.Width, col= Species)) + geom_point() ggplot(iris,aes(x = Petal.Length, y = Petal.Width, col= Species)) + geom_point() set.seed(200) k.max <- 10 wss<- sapply(1:k.max,function(k){kmeans(iris[,3:4],k,nstart = 20,iter.max = 20)$tot.withinss}) wss plot(1:k.max,# x= No of clusters, wss, # wss for each type= "b", #both points as also connect them xlab = "Number of clusters(k)", ylab = "Within cluster sum of squares") This study source was downloaded by 100000842525582 from CourseHero.com on 05-13-2022 05:27:11 GMT -05:00 https://www.coursehero.com/file/67662046/ISYE6501-HW2docx/#based on elbow point at 3 from the graph, whic shows that 3 is the best value for k to be used. icluster <- kmeans(iris[,3:4],3,nstart = 30) table(icluster$cluster,iris$Species) ggplot(iris,aes(x = Sepal.Length, y = Sepal.Width, col= Species)) + geom_point() #cluster tries 30 times random test shows setosa is clustered the most correctly Question 5.1 Using crime data from the file uscrime.txt (http://www.statsci.org/data/general/uscrime.txt, description at http://www.statsci.org/data/general/uscrime.html), test to see whether there are any outliers in the last column (number of crimes per 100,000 people). Use the grubbs.test function in the outliers package in R. #HW 5.1 #install.packages("outliers")# import packages library(outliers) set.seed(10) # as simple linear model uscrime <- read.delim("~/Downloads/Intro to Analystics Modeling/week_2_datasummer/uscrime.txt", header=TRUE) summary(uscrime) head(uscrime)#checking the data grubbs.test(uscrime$Crime) #find outlier range(uscrime$Crime) summary(uscrime$Crime) #checking 5 datas plot(uscrime$Crime) #view plot uscrime$Crime[0:20] #conclusion : highest value 1993 is an outlier Question 6.1 Describe a situation or problem from your job, everyday life, current events, etc., for which a Change Detection model would be appropriate. Applying the CUSUM technique, how would you choose the critical value and the threshold? Answer: To monitor stock price variance over time, I can apply Cumulative sums (CUSUM) of deviations from a target value. I am trying monitor bio-tech related stocks since average stock price of bio-tech has been higher than last month, the variance is significant enough that I am trying to decide whether should I buy this stock or not. It will be good to know if the price is just a outliers (a result of Covid-19 outbreak) or if they will be sustained. I would get average (mean) of stock price and a critical value that is relatively large for this year to get the threshold line to show detect the changes. Question 6.2 1. Using July through October daily-high-temperature data for Atlanta for 1996 through 2015, use a CUSUM approach to identify when unofficial summer ends (i.e., when the weather starts cooling off) each year. You can get the data that you need from the file temps.txt or online, for example at http://www.iweathernet.com/atlanta-weather-records or https://www.wunderground.com/history/airport/KFTY/2015/7/1/CustomHistory.html . You can use R if you’d like, but it’s straightforward enough that an Excel 6.62.spreadsheet can [Show More]

Last updated: 1 year ago

Preview 1 out of 4 pages

Also available in bundle (1)

GEORGIA TECH BUNDLE, ALL ISYE 6501 EXAMS, HOMEWORKS, QUESTIONS AND ANSWERS, NOTES AND SUMMARIIES, ALL YOU NEED

GEORGIA TECH BUNDLE, ALL ISYE 6501 EXAMS, HOMEWORKS, QUESTIONS AND ANSWERS, NOTES AND SUMMARIIES, ALL YOU NEED

By bundleHub Solution guider 1 year ago

$60

59  

Reviews( 0 )

Recommended For You

 Information Technology> QUESTIONS & ANSWERS > WGU C724 Information Systems Management Unit 3 Test Already Passed (All)

preview
WGU C724 Information Systems Management Unit 3 Test Already Passed

WGU C724 Information Systems Management Unit 3 Test Already Passed Memory and CPU ✔✔WHAT are the components found on a computer's motherboard? a.) Memory and CPU b.) Hard drive and Memory c.) CPU...

By Nutmegs , Uploaded: Sep 14, 2022

$10

 Information Technology> QUESTIONS & ANSWERS > System Administration and IT Infrastructure Services Week 3: Software and Platform Services Already Passed (All)

preview
System Administration and IT Infrastructure Services Week 3: Software and Platform Services Already Passed

What are some communication services you can utilize in your organization? Check all that apply. ✔✔email; Communication services, like chat applications, emails, and phone calls, allow you to commun...

By clairel^ , Uploaded: Oct 12, 2022

$5

 Information Technology> QUESTIONS & ANSWERS > WGU C468_PA Latest 2021/2022 (All)

preview
WGU C468_PA Latest 2021/2022

1.How is information related to data? Information is data that have been interpreted Information forms the base for accurate data collection Data provide an explanation of information Data is cons...

By Nutmegs , Uploaded: May 13, 2022

$10

 Information Technology> QUESTIONS & ANSWERS > ISYE 6501 19SP01 HW-05 Q8.1, Questions with accurate answers, Graded A+ 2022/2023 (All)

preview
ISYE 6501 19SP01 HW-05 Q8.1, Questions with accurate answers, Graded A+ 2022/2023

ISYE 6501 19SP01 HW-05 Q8.1 Describe a situation or problem from your job, everyday life, current events, etc., for which a linear regression model would be appropriate. List some (up to 5) predict...

By bundleHub Solution guider , Uploaded: Sep 03, 2022

$6

 Information Technology> QUESTIONS & ANSWERS > WGU C779 Vocabulary Latest Updated 2022 Already Graded A (All)

preview
WGU C779 Vocabulary Latest Updated 2022 Already Graded A

3-D Secure ✔✔An XML-based protocol used by credit card companies to add security to online credit and debit card transactions. Active Server Pages (ASP) ✔✔a proprietary technology available only on...

By keisha , Uploaded: Oct 30, 2022

$7

 Information Technology> QUESTIONS & ANSWERS > C724 (Information Systems Management) - WGU Complete Solution Guide. LATEST 2022 (All)

preview
C724 (Information Systems Management) - WGU Complete Solution Guide. LATEST 2022

Executive information system - Ans-A system that facilitates and supports senior managerial decisions. Data - Ans-Unorganized data that lacks meaning. Information - Ans-Data that has been organized...

By bundleHub Solution guider , Uploaded: May 25, 2022

$10

 Information Technology> QUESTIONS & ANSWERS > SIDA Badge Exam Questions and Answers (All)

preview
SIDA Badge Exam Questions and Answers

SIDA Badge Exam Questions and Answers

By Gabjay , Uploaded: Dec 10, 2022

$6.5

 Information Technology> QUESTIONS & ANSWERS > WGU C207 OA Questions and Answers with Complete Solutions (All)

preview
WGU C207 OA Questions and Answers with Complete Solutions

Simple indexing ✔✔Common analytic measure to improve performance. Compares current data with data during a base period. (Price / Price during "Base Period") x 100 i.e. Big Mac was 1.60 in 1968 whic...

By AMAZING GRACE , Uploaded: Sep 30, 2022

$10

 Information Technology> QUESTIONS & ANSWERS > WGU C795 NOC REPORTING TEMPLATE LATEST UPDATED 2022 ALREADY PASSED (All)

preview
WGU C795 NOC REPORTING TEMPLATE LATEST UPDATED 2022 ALREADY PASSED

NOC REPORTING TEMPLATE Date Updated: Name: Michael Roberts A. Introduction The Psinuvua Board of Directors have recently requested that scans be conducted on the internal systems as there had been...

By Nutmegs , Uploaded: Aug 08, 2022

$12

 Information Technology> QUESTIONS & ANSWERS > WGU Intro to IT C182 Practice Test Questions and Answers 100% Pass (All)

preview
WGU Intro to IT C182 Practice Test Questions and Answers 100% Pass

Definition of IT ✔✔IT is the technology used in creating, maintaining, and making information accessible as well as the people who supply and support the use and integration of Information Technolog...

By AMAZING GRACE , Uploaded: Oct 01, 2022

$5

$7.00

Add to cart

Instant download

Can't find what you want? Try our AI powered Search

OR

GET ASSIGNMENT HELP
80
0

Document information


Connected school, study & course



About the document


Uploaded On

Sep 03, 2022

Number of pages

4

Written in

Seller


seller-icon
bundleHub Solution guider

Member since 1 year

278 Documents Sold


Additional information

This document has been written for:

Uploaded

Sep 03, 2022

Downloads

 0

Views

 80

Document Keyword Tags

THE BEST STUDY GUIDES

Avoid resits and achieve higher grades with the best study guides, textbook notes, and class notes written by your fellow students

custom preview

Avoid examination resits

Your fellow students know the appropriate material to use to deliver high quality content. With this great service and assistance from fellow students, you can become well prepared and avoid having to resits exams.

custom preview

Get the best grades

Your fellow student knows the best materials to research on and use. This guarantee you the best grades in your examination. Your fellow students use high quality materials, textbooks and notes to ensure high quality

custom preview

Earn from your notes

Get paid by selling your notes and study materials to other students. Earn alot of cash and help other students in study by providing them with appropriate and high quality study materials.

WHAT STUDENTS SAY ABOUT US


What is Browsegrades

In Browsegrades, a student can earn by offering help to other student. Students can help other students with materials by upploading their notes and earn money.

We are here to help

We're available through e-mail, Twitter, Facebook, and live chat.
 FAQ
 Questions? Leave a message!

Follow us on
 Twitter
Useful links
  • Courses
  • Categories
  • We accept

    payment cards


    Copyright © Browsegrades · High quality services·