Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 2 out of 9 pages
Exam (elaborations)

Georgia Tech ISYE-ISYE-6501 Week 1 Assignment, 100% Accurate answers,

Document preview thumbnail
Preview 2 out of 9 pages

Georgia Tech ISYE-ISYE-6501 Week 1 Assignment, 100% Accurate answers, Document Content and Description Below ISYE-ISYE-6501 Week 1 Assignment Question 2.1 Describe a situation or problem from your job, everyday life, current events, etc., for which a classification model would be appropriate. List some pre dictors that you use. Designing user personas in product design developments The goal of user personas is to develop realistic representations of key audiences that give a clear picture of their expectations and use cases for products. Using user personas in the product design process is to understand user characteristics, needs, goals, etc. and gain valuable insights into user journeys, and later, test prototypes. With user personas, product owners, designers and engineers should be able to do the following: ● Put users at the center of product design to build empathy ● Focus on their campaign process and requirements ● Share insights with other stakeholders to gain consensuses ● Ultimately make products more actionable and desirable aligning users' needs and goals K-means classification​ would be an appropriate model to identify how many user persona types should be identified by using the current product analytics data that illustrate product uses. Potential predictors for this model may include 1) number of product access, 2) frequency of using specific product features (these features should signify what task each user should accomplish using the product), 3) 2 data entries for agency and department identifications, 4) exporting specific data Question 2.2.1-2 Using the support vector machine function ksvm contained in the R package kernlab, find a good classifier for this data. Show the equation of your classifier, and how well it classifies the data points in the full data set. ● Executive data finding summary ● Best accuracy - 98.16514% with rbfdot & C=1,000 C = 0.01 C = 1 C = 10 C = 100 C = 1,000 polydot 0. 0. 0. 0. 0. rbfdot 0. 0. 0. 0. 0. vanilliabot 0. 0. 0. 0. 0. data=("~/Desktop/GATech/ISYE-6501/Week1/credit_card_",header = T,sep='t') library(kernlab) model1v - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="vanilladot", C=0.1, scaled=TRUE) Setting default kernel parameters model2v - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="vanilladot", C=1, scaled=TRUE) Setting default kernel parameters model3v - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="vanilladot", C=10, scaled=TRUE) Setting default kernel parameters model4v - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="vanilladot", C=100, scaled=TRUE) Setting default kernel parameters model5v - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="vanilladot", C=1000, scaled=TRUE) Setting default kernel parameters model1p - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="polydot", C=0.1, scaled=TRUE) Setting default kernel parameters model2p - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="polydot", C=1, scaled=TRUE) Setting default kernel parameters model3p - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="polydot", C=10, scaled=TRUE) Setting default kernel parameters model4p - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="polydot", C=100, scaled=TRUE) Setting default kernel parameters model5p - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="polydot", C=1000, scaled=TRUE) Setting default kernel parameters model1r - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="rbfdot", C=0.1, scaled=TRUE) model1r - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="rbfdot", C=0.1, scaled=TRUE) model2r - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="rbfdot", C=1, scaled=TRUE) model3r - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="rbfdot", C=10, scaled=TRUE) model4r - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="rbfdot", C=100, scaled=TRUE) model5r - ksvm(x(data[,1:10]), r(data[,11]), type="C-svc", kernel="rbfdot", C=1000, scaled=TRUE) a1p = colSums(model1p@xmatrix[[1]] * model1p@coef[[1]]) a1r = colSums(model1r@xmatrix[[1]] * model1r@coef[[1]]) a1v = colSums(model1v@xmatrix[[1]] * model1v@coef[[1]]) a2p = colSums(model2p@xmatrix[[1]] * model2p@coef[[1]]) a2r = colSums(model2r@xmatrix[[1]] * model2r@coef[[1]]) a2v = colSums(model2v@xmatrix[[1]] * model2v@coef[[1]]) a3p = colSums(model3p@xmatrix[[1]] * model3p@coef[[1]]) a3r = colSums(model3r@xmatrix[[1]] * model3r@coef[[1]]) a3v = colSums(model3v@xmatrix[[1]] * model3v@coef[[1]]) a4p = colSums(model4p@xmatrix[[1]] * model4p@coef[[1]]) a4r = colSums(model4r@xmatrix[[1]] * model4r@coef[[1]]) a4v = colSums(model4v@xmatrix[[1]] * model4v@coef[[1]]) a5p = colSums(model5p@xmatrix[[1]] * model5p@coef[[1]]) a5r = colSums(model5r@xmatrix[[1]] * model5r@coef[[1]]) a5v = colSums(model5v@xmatrix[[1]] * model5v@coef[[1]]) a1p A1 A2 A3 A8 A9 -0.9 -0.9 -0.3 0.6 1.9 A10 A11 A12 A14 A15 -0.4 0.4 -0.1 -0.3 0.7 a1r A1 A2 A3 A8 A9 A10 0. 2. 2. 7. 17. -3. A11 A12 A14 A15 6. -0. -2. 7. a1v A1 A2 A3 A8 A9 -0.0 -0.2 -0.9 0.8 1.4 A10 A11 A12 A14 A15 -0.9 0.6 -0.1 -0.0 0.7 a2p​ A1 A2 A3 A8 A9 -0.9 -0.9 -0.8 0.1 1.2 A10 A11 A12 A14 A15 -0.0 0.3 -0.7 -0.3 0.2


Document information

Uploaded on
April 25, 2023
Number of pages
9
Written in
2022/2023
Type
Exam (elaborations)
Contains
Questions & answers
$9.49

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
Savior
3.5
(25)
Sold
95
Followers
70
Items
3385
Last sold
8 months ago




Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions

Whoops! We can’t load your doc right now. Try again or contact support.