Publications by Jackson Curtis
Code Along 4 - Jackson Curtis
# Load packages # Core library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.3 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.2 ...
217 sym R (2792 sym/9 pcs) 1 img
Code Along 3 pt 1
# Load packages library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.3 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.2 ✔ tid...
526 sym R (1998 sym/14 pcs)
Code Along 3 part 2 charts
# load packages library(tidyverse) # core functions ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.3 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1 ## ✔ lubridate ...
61 sym R (3176 sym/11 pcs) 2 img
Code Along 3 Charts
# Load packages library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.3 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.2 ✔ tid...
526 sym R (1998 sym/14 pcs)
Code Along 2 Part 2
Import data flights ## # A tibble: 336,776 × 19 ## year month day dep_time sched_dep_time dep_delay arr_time sched_arr_time ## <int> <int> <int> <int> <int> <dbl> <int> <int> ## 1 2013 1 1 517 515 2 830 819 ## 2 2013 1 1 533 529 ...
310 sym Python (20609 sym/51 pcs) 1 img
Code Along 2 Part 1
Coding basics R as a calculator 1000 / 10 ## [1] 100 x <- 1000 / 10 x ## [1] 100 assignment symbol What’s in a name? Calling functions Use of TAB seq(from = 1, to = 10, by = 1) ## [1] 1 2 3 4 5 6 7 8 9 10 continuation character, + seq(from = 1, to = 10) ## [1] 1 2 3 4 5 6 7 8 9 10 Printing to screen y <- seq(from = 1, t...
172 sym Python (237 sym/10 pcs)
Apply 1 - Jackson Curtis
Import stock prices stocks <- tq_get(c("HD", "LOW", "WMT"), get = "stock.prices", from = "2016-01-01", to = "2017-01-01") stocks ## # A tibble: 756 × 8 ## symbol date open high low close volume adjusted ## <chr> <date> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> ## 1 HD 2...
50 sym Python (1083 sym/3 pcs) 1 img
Code Along 1
Welcome Ch1 Introduction The data science project workflow Prerequisites R RStudio r packages Install the tidyverse package Running R code 1+2 ## [1] 3 Getting help Google Stackoverflow Ch2 Introduction to Data Exploration Ch3 Data Visualization Set up library(tidyverse) ## ── Attaching core tidyverse packages ───────�...
1381 sym R (2425 sym/16 pcs) 7 img
Real World Application 1
Company The company I am researching is Comptus Characteristics of the company Comptus is a leading producer of quality wind and industrial environmental sensors, transmitters and controls. Their main focus is on arrestors, grounding, humidity sensors, humidity transmitters, infrared sensors, etc. Their instruments are known for their reliabilit...
629 sym
Best Practices 1
Chapter 1 It’s Not Just about Forecasting The following are the key points in the chapter. Elaborate on each point in at least 30 words. Understanding economics can help you to diagnose the causes of increases or decreases in sales volumes and costs. Understanding economics helps you diagnose why an increase or decrease in sales volume and co...
2227 sym