Publications by Jonathan Cushing

Jonathan Cushing Assignment 6

11.12.2020

Kelly Blue Book was scraped for the 10 longest range electric only vehicles. A “TRUE” was returned allowing scraping, so data was obtained and converted into a data frame with four variables: Price, Make, Charge time, and Range. paths_allowed( paths = c("https://www.kbb.com/best-cars/top-10-longest-range-electric-cars/2/")) ## [1] TRUE url...

1110 sym R (1718 sym/8 pcs) 2 img

Jonathan Cushing Assignment Four

27.11.2020

R Markdown library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(ggplot2) library(tidyverse) ## -- Attaching packages ------------------------------------...

19 sym R (1521 sym/13 pcs) 1 img

Assignment 2 Jonathan Cushing

13.11.2020

Instructions Refer to the detailed instructions for this assignment in Brightspace. Data Import Don’t alter the three code chunks in this section. First we read in the two data sets and deleting missing values. library(tidyverse) fluoride <- read_csv("http://jamessuleiman.com/teaching/datasets/fluoride.csv") fluoride <- fluoride %>% drop_na() ...

1354 sym R (5163 sym/15 pcs) 1 img

Assignment 1

29.10.2020

This assignment is not really a coding assignment. The purpose is mostly to get you used to creating reports in R as you’ll need to do this for future assignments. We will cover reporting in more depth later in the course. Instructions In the YAML header, change the author name to your name. (10 points) In the code chunk below, on line 29, ad...

830 sym R (369 sym/2 pcs)

Assignment 1

29.10.2020

This assignment is not really a coding assignment. The purpose is mostly to get you used to creating reports in R as you’ll need to do this for future assignments. We will cover reporting in more depth later in the course. Instructions In the YAML header, change the author name to your name. (10 points) In the code chunk below, on line 29, ad...

830 sym R (369 sym/2 pcs)

Assignment 3 Jonathan Cushing

20.11.2020

Report prepared for Cornelia Thurza Crosby A list of colleges sorted high to low by the mid SAT math score, violent crime below the median of the dataset, acrredited by SACSCC, and with midpoint SAT math scores. library(tidyverse) ## ── Attaching packages ─────────────────────────────...

7776 sym R (2536 sym/14 pcs)

Jonathan Cushing Assignment 5

05.12.2020

Introduction Singapore’s 5.69 million citizens primarily consist of three ethnic groups; Chinese, Maltese, and Indians. The country officially embraces its cultural diversity; in fact, embodied in its constitution, an affirmative action provision allows each ethnic group time in power. Since 1965 this parlimentory governance has officially emb...

1802 sym R (4074 sym/22 pcs) 4 img