Publications by Alec McCabe

Global Child Mortality Rates

03.10.2021

Child Mortality Analysis Alec 10/3/2021 Introduction Discussion Board Title: Global Child Mortality Rates Dataset: https://sejdemyr.github.io/r-tutorials/basics/data/RatesDeaths_AllIndicators.xlsx Provided by: Alec McCabe Suggested Prompt: "What 10 countries have the highest under-5 mortality rates today? For the 10 worst countries, visualize th...

2655 sym R (1867 sym/18 pcs) 2 img

Analyzing Champion Stats in League of Legends

03.10.2021

Analyzing Champion Stats in League of Legends Alec 10/3/2021 Introduction Discussion Board Title: Analyzing Champion Stats in League of Legends Dataset: https://ddragon.leagueoflegends.com/cdn/11.19.1/data/en_US/champion.json Provided by: Santiago Torres Suggested Prompt: “For all champions, figure out who has the highest starting hp for each ...

3043 sym R (4879 sym/46 pcs)

606_homework_4

26.09.2021

Chapter 4 - Distributions of Random Variables Alec McCabe library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.5 ✓ purrr 0.3.4 ## ✓ tibble 3.1.4 ✓ dplyr 1.0.7 ## ✓ tidyr ...

6265 sym R (2732 sym/52 pcs) 7 img 1 tbl

Exploring Distributions Lab

26.09.2021

The normal distribution Alec McCabe In this lab, you’ll investigate the probability distribution that is most central to statistics: the normal distribution. If you are confident that your data are nearly normal, that opens the door to many powerful statistical methods. Here we’ll use the graphical tools of R to assess the normality of our d...

11640 sym R (3096 sym/33 pcs) 15 img

606 - Homework 3

19.09.2021

Chapter 3 - Probability Alec McCabe Dice rolls. (3.6, p. 92) If you roll a pair of fair dice, what is the probability of getting a sum of 1? getting a sum of 5? getting a sum of 12? Answers: (a): this is impossible, since the lowest sum could be 2. P(x+y=1)=0 (b): there are 4 combinations out of 36 possible combinations. Therefore P(x+y=5) ...

6643 sym R (2928 sym/36 pcs) 2 img

Wrangling Chess Tournament Data

16.09.2021

Wrangling Chess Tournament Data Alec McCabe 9/12/2021 Setup Load libraries library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.5 ✓ purrr 0.3.4 ## ✓ tibble 3.1.4 ✓ dplyr 1....

8797 sym R (7942 sym/52 pcs) 3 img

606_lab_2

13.09.2021

Some define statistics as the field that focuses on turning information into knowledge. The first step in that process is to summarize and describe the raw information – the data. In this lab we explore flights, specifically a random sample of domestic flights that departed from the three major New York City airports in 2013. We will generate s...

11184 sym R (5602 sym/41 pcs) 9 img

607_homework_3

12.09.2021

Load Libraries library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.5 ✓ purrr 0.3.4 ## ✓ tibble 3.1.4 ✓ dplyr 1.0.7 ## ✓ tidyr 1.1.3 ✓ stringr 1.4.0 ## ✓ readr ...

3013 sym R (5268 sym/44 pcs)

MS606_Homework_2

12.09.2021

install required libraries devtools::install_github("jbryer/DATA606") ## Skipping install of 'DATA606' from a github remote, the SHA1 (e12c7ab3) has not changed since last install. ## Use `force = TRUE` to force installation library(devtools) devtools::install_github(“jbryer/DATA606”) load libaries library(tidyverse) ## ── Attaching pa...

6653 sym R (929 sym/12 pcs) 5 img

Subsetting Data: Why Americans Don't Vote

29.08.2021

Introduction This homework assignment analyzes a dataset discussed in the FiveThirtyEight article titled “Why Many Americans Don’t Vote”. The dataset is based on survey results collected from over 8,000 participants, and is focused on identifying patterns surrounding individuals’ willingness or unwillingness to vote in US elections. The o...

2486 sym R (3338 sym/16 pcs)