Publications by Derek Howanski

Updated final IDS Project

11.12.2023

1. Setup Chunk: This chunk is setting an option for the knitr package to include code when rendering the R Markdown document. echo = TRUE means that the code chunks will be displayed in the output. # Load necessary libraries library(readxl) library(tidymodels) ## ── Attaching packages ──────────────────�...

3671 sym R (8551 sym/49 pcs) 4 img

Apply 11

01.12.2023

# for Core packages library(tidyverse) ## Warning: package 'forcats' was built under R version 4.3.2 ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.3 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ggpl...

553 sym R (11103 sym/60 pcs) 5 img

IDS Project

29.11.2023

# Load necessary libraries library(readxl) library(tidymodels) ## ── Attaching packages ────────────────────────────────────── tidymodels 1.1.1 ── ## ✔ broom 1.0.5 ✔ recipes 1.0.8 ## ✔ dials 1.2.0 ✔ rsample 1.2.0 ## ✔ dp...

3701 sym R (8550 sym/49 pcs) 4 img

Code Along 11

28.11.2023

Plotting Time Series taylor_30_min ## # A tibble: 4,032 × 2 ## date value ## <dttm> <dbl> ## 1 2000-06-05 00:00:00 22262 ## 2 2000-06-05 00:30:00 21756 ## 3 2000-06-05 01:00:00 22247 ## 4 2000-06-05 01:30:00 22759 ## 5 2000-06-05 02:00:00 22549 ## 6 2000-06-05 02:30:00 22313 ## 7 2000-06-05 03:00:0...

409 sym 5 img

DAT 3100 Apply 10

17.11.2023

Explore data 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 ✔ ti...

2533 sym R (9095 sym/33 pcs) 2 img

DAT 3100 Code Along 10

14.11.2023

Our modeling goal is to “discover” topics in the lyrics of Spice Girls songs. Instead of a supervised or predictive model where our observations have labels, this is an unsupervised approach. Explore data library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── ti...

4142 sym R (9536 sym/34 pcs) 2 img

DAT 3100 Apply 8

11.11.2023

Explore Data Our modeling goal is to predict whether a batter’s hit results in a home run given features about the hit. The main data set provided is in a CSV file called training.csv. library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── #...

4397 sym R (6935 sym/47 pcs) 5 img

Apply 7

10.11.2023

Explore data departures <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2021/2021-04-27/departures.csv') ## Rows: 9423 Columns: 19 ## ── Column specification ───────────────────────────────────────────────...

1768 sym R (6996 sym/47 pcs) 1 img

DAT 3100 Apply 6

10.11.2023

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 ✔ tidyr 1.3.0...

1374 sym R (8858 sym/38 pcs) 4 img

Code Along 7

10.11.2023

Explore data bigfoot_raw <- read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-09-13/bigfoot.csv') ## Rows: 5021 Columns: 28 ## ── Column specification ──────────────────────────────────────────────────...

1861 sym R (7162 sym/47 pcs) 1 img