Publications by Dariusz Siergiejuk

R Bridge Course Final Project

02.08.2020

R Bridge Course Final Project Dariusz Siergiejuk 2020-08-01 This is a final project to show off what you have learned. Select your data set from the list below: http://vincentarelbundock.github.io/Rdatasets/ (click on the csv index for a list). Another good source is found here: https://https//archive.ics.uci.edu/ml/datasets.html Homework Quest...

3654 sym R (11435 sym/31 pcs) 6 img

R Bridge Week 1 Assignment

20.07.2020

R Bridge Week 1 Assignment Dariusz Siergiejuk 2020-07-19 1. Write a loop that calculates 12-factorial. inPvec<-1 # to create vector for linking/binding outcomes together for (x in 1:12){ # browser() if(x == 1) inPvec <- 1 else { inPvec <- inPvec * x } cat(x, "!:", inPvec, "\n") } ## 1 !: 1 ## 2 !: 2 ## 3 !: 6 ## 4 !:...

404 sym R (823 sym/9 pcs)

R Bridge Week 2 Assignment

27.07.2020

Second Week R Homework Dariusz Siergiejuk 2020-07-26 One of the biggest challenges while working with data is wrangling. In this assignment we will use R to perform this task. Here is a list of data sets: http://vincentarelbundock.github.io/Rdatasets/ (click on the csv index for a list). Homework Questions Please select one, download it and per...

1435 sym R (41117 sym/32 pcs)

Project Two Part Three

04.10.2020

Project Two = File Three Dariusz Siergiejuk 2020-10-03 IS 607 – Project 2 The goal of this assignment is to give you practice in preparing different datasets for downstream analysis work. Your task is to: Choose any three of the “wide” datasets identified in the Week 6 Discussion items. (You may use your own dataset; please don’t use ...

3871 sym R (3424 sym/9 pcs)

Project Two Part Two

04.10.2020

Project Two = File Two Dariusz Siergiejuk 2020-10-03 IS 607 – Project 2 The goal of this assignment is to give you practice in preparing different datasets for downstream analysis work. Your task is to: Choose any three of the “wide” datasets identified in the Week 6 Discussion items. (You may use your own dataset; please don’t use my...

3911 sym R (3800 sym/23 pcs)

Assignment Five

27.09.2020

Assignment 5 Dariusz Siergiejuk 2020-09-26 Assignment – Tidying and Transforming Data The chart above describes arrival delays for two airlines across five destinations. Your task is to: (1) Create a .CSV file (or optionally, a MySQL database!) that includes all of the information above. You’re encouraged to use a “wide” structure simi...

2013 sym R (3552 sym/11 pcs)

Project Two Part One

04.10.2020

Project Two = File One Dariusz Siergiejuk 2020-10-03 IS 607 – Project 2 The goal of this assignment is to give you practice in preparing different datasets for downstream analysis work. Your task is to: Choose any three of the “wide” datasets identified in the Week 6 Discussion items. (You may use your own dataset; please don’t use my...

3512 sym R (2591 sym/14 pcs) 2 img