Publications by Harold Nelson

Probability Distributions 1

11.03.2024

Probability Distributions Harold Nelson March 11, 2024 Basic Concepts of Probability An event is a set of possible outcomes of an experiment.The probability of an event is what we expect its relative frequency to approach as we run the experiment a large number of times.These values can arise from several sources. Probabilities are always number...

7117 sym

Analyzing Weather Data

02.03.2024

Analyzing Weather Data with Python Using Pandas and Matplotlib Author Harold Published February 29, 2024 Introduction In this presentation, we’ll explore how to analyze weather data using Python. We’ll focus on using the Pandas library for data manipulation and Matplotlib for data visualization. Data Analysis with Pandas Loading the Dat...

534 sym

Factoids 2309

28.02.2024

Olympia Weather Factoids Harold Nelson 2/28/2024 Setup library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.5 ## ✔ forcats 1.0.0 ✔ stringr 1.5.1 ## ✔ ggplot2 3.4.4 ✔ tibble ...

665 sym

Using the Tidyverse

23.02.2024

Using the Tidyverse Harold Nelson 2024-02-23 Setup library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.5 ## ✔ forcats 1.0.0 ✔ stringr 1.5.1 ## ✔ ggplot2 3.4.4 ✔ tibble 3....

802 sym

OAW Analysis

12.02.2024

OAW Analysis Harold Nelson 2024-02-12 Housekeeping Create a new project, OAW Download the file OAW2309.Rdata Move the file to your project directory file.choose() getwd() Setup Get the tidyverse and the OAW2309 dataframe. library(tidyverse) ## ── Attaching core tidyverse packages ────────────────────�...

645 sym 4 img

Vectors

20.12.2023

Vectors Vectors A vector in R is an ordered collection of values. The individual values in a vector may be referenced with an index value beginning with 1. The most basic way to create a vector is to use the c() function. Examples vector_1 = c(23,2,-4,7) vector_1[3] [1] -4 vector_2 = c("cat","dog","parrot","python") vector_2[3] [1] "parrot" ...

480 sym

Feature Engineering

21.11.2023

Feature Engineering Harold Nelson 2023-11-21 Setup library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.4.1 ✔ purrr 1.0.1 ## ✔ tibble 3.2.1 ✔ dplyr 1.1.1 ## ✔ tidyr 1.3.0 ...

2016 sym Python (13341 sym/62 pcs) 2 img

Regression Fall 23

07.11.2023

Regression Fall 23 Harold Nelson 2023-11-07 Setup Load tidyverse and tidymodels Load the dataframe OAW2309. Solution library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.4.1 ✔ purrr 1.0...

825 sym

Build SD2310

17.10.2023

Build SD2310 Harold Nelson 2023-10-17 Setup library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.4.1 ✔ purrr 1.0.1 ## ✔ tibble 3.2.1 ✔ dplyr 1.1.1 ## ✔ tidyr 1.3.0 ✔...

305 sym Python (5690 sym/21 pcs)

Comparison

17.10.2023

Comparison Harold Nelson 2023-10-17 Setup library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.4.1 ✔ purrr 1.0.1 ## ✔ tibble 3.2.1 ✔ dplyr 1.1.1 ## ✔ tidyr 1.3.0 ✔ s...

275 sym Python (3255 sym/13 pcs)