Publications by Justin Park

Justin Park - Nations Dataset Country Economics

28.06.2021

In this work, I looked at the economic growths of the four biggest countries in this world. These countries are; the US, China, Japan, and Germany. However, I also decided to add another country just for my own interests. First load in all the necessary packages. The essential ones this time will be “ggplot2” and “RColorBrewer”. # instal...

2324 sym R (1121 sym/10 pcs) 2 img

Justin Park - Nations Dataset Regional Economics

28.06.2021

In this work, unlike the previous work I looked at the economic growths of the different regions around the world. What I expect to see is Europe being on top along with East Asia, and then South Asia and Africa being on the bottom. However, that may not be the case so let’s examine the data through an area graph. First load in all the necessa...

2335 sym R (1113 sym/12 pcs) 2 img

DATA 101 Data Transformation Workshop

25.07.2021

Introduction In this workshop we will do some of the exercises from Chapter 5 of R4DS. Exercises from 5.2.4 Use a separate code block for each exercise. for example: 1. Find all flights that had an arrival delay of two or more hours. flights %>% filter(arr_delay >= 120) # note delays are in minutes ## # A tibble: 10,200 × 19 ## year month...

2810 sym R (12731 sym/27 pcs)

DATA 101 Diamonds Workshop

26.07.2021

Introduction The objective of this workshop is to introduce you the the art of Exploratory Data Analysis (EDA). The introduction to section 7.1 in R4DS gives a short and useful overview of what EDA is. In this project we will be working with the diamonds data set. In the console type ?diamonds to link to a help file describing the dimond data ba...

4818 sym R (6742 sym/24 pcs) 6 img

DATA 101 Final Project - Human Freedom Index

21.08.2021

Loading in Necessary Packages library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.5.9000 ✓ purrr 0.3.4 ## ✓ tibble 3.1.3 ✓ dplyr 1.0.7 ## ✓ tidyr 1.1.3 ...

20862 sym R (6940 sym/51 pcs) 9 img

Project 3 Single Variable Regression

20.08.2021

Introduction This project is intended to extend and supplement what we talked about last week in discussing Linear Regression. In some of the sections you will be asked to write R code to solve a particular problem. In some you will be asked to answer questions in your own words. Summary and Exercises Single Variable Regression We are trying to...

6708 sym R (6868 sym/45 pcs) 10 img

Multiple Regression Tutorial

10.08.2021

library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.5.9000 ✓ purrr 0.3.4 ## ✓ tibble 3.1.3 ✓ dplyr 1.0.7 ## ✓ tidyr 1.1.3 ✓ stringr 1.4.0 ...

9115 sym R (8120 sym/33 pcs) 1 tbl