Publications by Harold Nelson

The t test

03.04.2024

The t test Harold Nelson 2024-04-03 The t test We can use the t test to test hypotheses about the mean value of a variable. Setup library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.5 ## ✔ for...

3622 sym

Tidymodels Regression

02.04.2024

Tidymodels Regression Harold Nelson 2024-04-02 Setup Load tidyverse and tidymodels Load the dataframe OAW2309. Solution library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.5 ## ✔ forcats 1.0...

1652 sym 1 img

Hypothesis Testing

27.03.2024

Hypothesis Testing Harold Nelson 2024-03-27 Hypothesis Testing Hypothesis testing is an alternative to confidence interval construction. Confidence intervals are easy to understand. You use a confidence interval to make an expanded statement on an estimate you’ve made. Here’s my estimate, and here’s how good I think it. My estimate is WWW ...

4271 sym

Regression 2

25.03.2024

Regression 2 Harold Nelson 4/3/2022 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.2.1 ## �...

2370 sym Python (5891 sym/29 pcs) 9 img

Regression 3

25.03.2024

Regression 3 Harold Nelson 4/5/2022 Setup library(tidyverse) Dummy Variables A dummy variable has only two values, 0 and 1 or (FALSE or TRUE). This device is used in regression to mark the presence or absence of a condition. If one of these is used in the list of independent variables, the value of its coefficient is the amount added to the pre...

2002 sym

Confidence Intervals

25.03.2024

Confidence Intervals Harold Nelson 2024-03-25 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...

1774 sym Python (2935 sym/6 pcs)

Proportion Sampling

25.03.2024

Proportion Samplinng Harold Nelson 2024-03-25 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...

1872 sym 3 img

Logistic Regression

24.03.2024

Logistic Regression Harold Nelson 3/24/2024 Logistic Regression This model is used for models with a binary outcome. As an example, we will consider the problem of identifying gender based on other variables. We will continue using the cdc2 dataframe. Load the Data load("cdc2.Rdata") Setup Get the packages we need. library(tidyverse) ## ──...

2194 sym Python (3045 sym/29 pcs) 2 img

Regression 1

23.03.2024

Regression 1 Harold Nelson 3/21/2022 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.2.1 ## �...

2032 sym 3 img

Why Normal

22.03.2024

Why The Normal Harold Nelson 2024-03-22 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.2.1 #...

1613 sym 2 img