Publications by Sully Yoon

Notes

08.09.2022

# Quick Notes # This section is a chunk of code, use shortcut ctrl alt I # Comment out a line use Ctrl Shift C # Compile pdf Ctrl Shift K # Run Line Ctrl Enter # Run Chunk Ctrl Shift Enter # Debug toggle Breakpoint Shift F9 # Stop Debug Shift F8 ...

4 sym

Air Quality Assignment

12.09.2022

Startup Tidyverse to process and handle most plots. rbokeh to process plot 5. Setting wd to where all class files are. library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.3.6 ✔ purrr 0...

985 sym R (6050 sym/37 pcs) 5 img

Hate Crimes Analysis Review

21.09.2022

Homework - review of hate crimes dataset analysis Hate Crimes Dataset This dataset looks at all types of hate crimes in New York counties by the type of hate crime from 2010 to 2016. My caveat: Flawed hate crime data collection - we should know how the data was collected (Nathan Yau of Flowing Data, Dec 5, 2017) Data can provide you with impo...

8254 sym R (21972 sym/43 pcs) 4 img

Practice Graphs

04.10.2022

Rerun with updated graphs by: Sulchan Yoon Original by: Rachel Saidi So many ways to visualize data Load the packages and the data from flowingdata.com website The data is a csv file that compares number of views, number of comments to various categories of Yau’s visualization creations #install.packages("treemap") #install.packages("RColo...

8076 sym R (10208 sym/47 pcs) 8 img 1 tbl

NYCFlights Homework

04.10.2022

NYC Flights Homework The purpose of this Homework is to review and summarize data on NYC Flights in 2013. I will look at this review in the POV of a primary investigator setting up for grant funding to do research. Load the libraries and view the “flights” dataset library(tidyverse) ## ── Attaching packages ─────────�...

2007 sym R (13686 sym/28 pcs) 2 img

Inclass 5 assignment

10.10.2022

Inclass 5: Intro to Data Lab source("http://www.openintro.org/stat/data/cdc.R") names(cdc) ## [1] "genhlth" "exerany" "hlthplan" "smoke100" "height" "weight" "wtdesire" ## [8] "age" "gender" Exercise 1 How many cases are there in this data set? How many variables? For each variable, identify its data type. There are 20,000 observat...

1901 sym 9 img

Homework5 Data101

10.10.2022

On Your Own source("http://www.openintro.org/stat/data/cdc.R") Make a scatterplot of weight versus desired weight. Describe the relationship between these two variables. plot(cdc$weight, cdc$wtdesire) There is a common trend that shows typically the desired weight is lower than the actual weight. The differences at the lower end seem to be cl...

1685 sym 3 img

InClass 6

11.10.2022

library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.3.6 ✔ purrr 0.3.4 ## ✔ tibble 3.1.8 ✔ dplyr 1.0.9 ## ✔ tidyr 1.2.0 ✔ stringr 1.4.1 ## ✔ readr 2.1.2 �...

554 sym R (5378 sym/21 pcs)

Nations HW

11.10.2022

library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.3.6 ✔ purrr 0.3.4 ## ✔ tibble 3.1.8 ✔ dplyr 1.0.9 ## ✔ tidyr 1.2.0 ✔ stringr 1.4.1 ## ✔ readr 2.1.2 �...

1467 sym R (4144 sym/17 pcs)

Telecom Assignment

17.10.2022

library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.3.6 ✔ purrr 0.3.4 ## ✔ tibble 3.1.8 ✔ dplyr 1.0.9 ## ✔ tidyr 1.2.0 ✔ stringr 1.4.1 ## ✔ readr 2.1.2 �...

554 sym R (5385 sym/21 pcs)