Publications by Jake Abdow
Web Scraping Assignment
Install Packages #install.packages("rvest") Load Libraries, specify what url, and set the working directry #Loading the rvest package library('rvest') ## Warning: package 'rvest' was built under R version 4.2.3 setwd("C:/Users/jakea/OneDrive/Desktop/MC 2022/DATA-110") #Specifying the url for desired website to be scraped url <- 'http://www.imd...
2501 sym R (11844 sym/58 pcs)
High Charter Assignment
Install Package #install.packages("dslabs") Load Library library(dslabs) library(ggthemes) library(ggrepel) ## Loading required package: ggplot2 library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ## ── ## ✔ ti...
212 sym R (3381 sym/14 pcs)
Project 1 Draft
Create a Scatterplot and Possible Treemap for Roller Coaster Dataset library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.0 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.1 ...
525 sym R (34651 sym/22 pcs) 3 img
Week 6 Homework Assignment
Create two charts as shown from the Nations dataset #devtools::install_github("hrbrmstr/streamgraph") library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.0 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr ...
676 sym R (3171 sym/20 pcs) 4 img
NYFlights13 Assignment
load necessary libraries library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.4.1 ✔ purrr 1.0.1 ## ✔ tibble 3.1.8 ✔ dplyr 1.0.10 ## ✔ tidyr 1.3.0 ✔ stringr 1.5.0...
457 sym R (3260 sym/15 pcs) 3 img
Heatmaps, Treemaps, Streamgraphs and Alluvials Tutorial
load libraries library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.4.1 ✔ purrr 1.0.1 ## ✔ tibble 3.1.8 ✔ dplyr 1.0.10 ## ✔ tidyr 1.3.0 ✔ stringr 1.5.0 ## ✔ ...
1536 sym R (15094 sym/49 pcs) 8 img 1 tbl
Hate Crimes HW Assignment
load packages library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.4.0 ✔ purrr 1.0.1 ## ✔ tibble 3.1.8 ✔ dplyr 1.0.10 ## ✔ tidyr 1.2.1 ✔ stringr 1.5.0 ## ✔ r...
4285 sym R (22074 sym/45 pcs) 4 img
Airquailty Homework Assigment
Histogram categorized by Month using qplot p1 <- qplot(data = airquality,Temp,fill = Month,geom = "histogram", bins = 20) ## Warning: `qplot()` was deprecated in ggplot2 3.4.0. p1 Histogram using ggplot p2 <- airquality %>% ggplot(aes(x=Temp, fill=Month)) + geom_histogram(position="identity", alpha=0.5, binwidth = 5, color = "white")+ sca...
651 sym 5 img 1 tbl
Airquailty Homework Assigment
#Load the dataset and Look at data structure airquality <- airquality str(airquality) ## 'data.frame': 153 obs. of 6 variables: ## $ Ozone : int 41 36 12 18 NA 28 23 19 8 NA ... ## $ Solar.R: int 190 118 149 313 NA NA 299 99 19 194 ... ## $ Wind : num 7.4 8 12.6 11.5 14.3 14.9 8.6 13.8 20.1 8.6 ... ## $ Temp : int 67 72 74 6...
903 sym 5 img 1 tbl