Publications by Justin Park

Justin Park - Airquality HW

07.06.2021

library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v ggplot2 3.3.3 v purrr 0.3.4 ## v tibble 3.1.2 v dplyr 1.0.6 ## v tidyr 1.1.3 v stringr 1.4.0 ## v readr 1.4.0 v forcats 0.5.1 ## -- Conflicts ------------------------------------------ tidyverse_conflicts() -- #...

1772 sym R (4343 sym/30 pcs) 7 img

Practice Document

01.06.2021

This is my first markdown file Create my first chunk Create my first chunk (ctrl + alt + i) # create my first chunk minutes <- c(60,150,45,45,90,60,90,70,80,95) mean(minutes) ## [1] 78.5 sd(minutes) ## [1] 31.00627 create a boxplot boxplot(minutes) ...

125 sym R (137 sym/5 pcs) 1 img

DATA 110 Project 2

11.07.2021

DATA 110 Final Project Hello everyone, as everyone knows, police brutality and/or killings have been a major issue throughout the USA for a very long time. The term was first used by the Chicago Tribune in 1872. But it only has become a big issue relatively recently. There have been many reactions to this issue, most notably the Black Lives Matte...

10049 sym R (6607 sym/35 pcs) 3 img

Justin Park - Interactive Maps

06.07.2021

Creating Interactive Maps Now that we’ve created our static maps, perhaps we can make this more interesting by making different maps that are interactive for the viewer. But in order to do so, let’s use a new dataset first - the 2016 Presidiential Prelimaries - and install the necessary packages. # install.packages("tmap") # install.pacakges(...

2858 sym R (9596 sym/68 pcs) 7 img

Justin Park - Making Maps with R

06.07.2021

First we are going to need to install the necessary packages. Since creating an interactive map is a major portion of this, we’ll be needing the necessary packages to do so. # install.packages("devtools") # install.packages("stringr") # install.packages(c("maps", "mapdata")) Then we load them. library(ggplot2) library(maps) library(mapdata) lib...

3079 sym R (8611 sym/60 pcs) 17 img

Justin Park - IMDb Web Scraping HW

02.07.2021

In this assignment, we practiced a technique known as Web Scraping. Essentially, this allows us to convert data in HTML tags on the web to structured data that can be easily accessed and used. In this assignment specifically, we web scraped data for the most popular films of 2016 from the IMDb website. First, we need the necessary packages. Notic...

3209 sym R (8211 sym/59 pcs) 4 img

Greenhouse Gases (dsLabs HW)

27.06.2021

In this work, I looked at the greenhouse concentrations over the years and saw the patterns in the increases and decreases of all the gases. First install the necessary packages, and since “dslabs” contains our dataset installing it will be a priority. # install.packages("dslabs") library("dslabs") Loading in the other packages data("greenho...

2503 sym R (2934 sym/15 pcs) 3 img

Justin Park - Project 1 Movies

22.06.2021

Hello everyone. It’s been over a year since COVID-19 was introduced to the world and since then it has affected every one of our lives. The effects can be seen and observed almost everywhere from restaurants, schools, businesses, and even the movie industry. In this project, I wanted to see the impact that the pandemic has had on the movie indu...

7863 sym R (6875 sym/27 pcs) 3 img

Justin Park - NYC Flights Homework

18.06.2021

library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v ggplot2 3.3.3 v purrr 0.3.4 ## v tibble 3.1.2 v dplyr 1.0.6 ## v tidyr 1.1.3 v stringr 1.4.0 ## v readr 1.4.0 v forcats 0.5.1 ## -- Conflicts ------------------------------------------ tidyverse_conflicts() -- #...

932 sym R (6437 sym/20 pcs) 1 img

Justin Park - Data 110 Hate Crimes HW

14.06.2021

library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v ggplot2 3.3.3 v purrr 0.3.4 ## v tibble 3.1.2 v dplyr 1.0.6 ## v tidyr 1.1.3 v stringr 1.4.0 ## v readr 1.4.0 v forcats 0.5.1 ## -- Conflicts ------------------------------------------ tidyverse_conflicts() -- #...

3709 sym R (23282 sym/40 pcs) 4 img