Publications by Harold Nelson

Demo 1

16.10.2024

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the...

591 sym 1 img

RPubs Demo

15.10.2024

Identify Outliers Harold Nelson 2022-10-11 This is a follow-up to “Models and Visualization”. Setup library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.5 ## ✔ forcats 1.0.0 ✔ strin...

519 sym Python (3187 sym/14 pcs) 1 img

Fertility for AI

30.07.2024

Fertility for AI Harold Nelson 7/30/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.5.1 ✔ tibble 3.2.1 ...

831 sym Python (6887 sym/31 pcs) 2 img

The Bootstrap

18.07.2024

The Bootstrap Harold Nelson 2024-07-18 Intro I want to show you how to create a bootstrap distribution without using the infer package. Going through this should give you a clearer picture of the process. We’ll use the dataframe age_at_mar from the openintro package. Setup library(tidyverse) ## ── Attaching core tidyverse packages ──�...

629 sym 1 img

Normal Distribution Lab Walkthrough

14.07.2024

Normal Distribution Lab Guide Harold Nelson 2024-07-14 Intro and Setup I will walk through the exercises in the lab using a different dataset, OAW2309. It contains weather records from the Olympia airport. library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyv...

605 sym 9 img

Shuffle and Difference

04.07.2024

Shuffle and Difference Harold Nelson 2024-07-04 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.5.1 ✔ tibble ...

188 sym

Scatterplot Failures

25.06.2024

Scatterplot Saturation Harold Nelson 2024-06-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.5.1 ✔ tibble ...

437 sym 11 img

Visualizing Categorical Pairs

11.06.2024

Visualizing Categorical Pairs Harold Nelson 2024-06-10 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.5.1 ✔ ti...

588 sym 3 img

Contingency Tables

04.06.2024

Contingency Tables Harold Nelson 2024-06-04 Setup # install.packages("gmodels") # Just once library(gmodels) # Every Time load("comics.Rdata") CrossTable The method of constructing a contingency table given in the text is cumbersome and doesn’t give a convenient result. It is much better to use the CrossTable() function from the gm...

368 sym

Skimr

04.06.2024

Skimr Harold Nelson 2024-06-04 Setup # install.packages("skimr") #Just once library(skimr) #Every Time load("comics.RData") Create Skimmed DF for comics skimmed = skim(comics) knitr::kable(skimmed) skim_type skim_variable n_missing complete_rate character.min character.max character.empty character.n_unique character.whitespace numer...

79 sym 1 tbl