Publications by AJ Strauman-Scott

DATA 607 Project 1

15.02.2024

Introduction For this project, we have received a text file with chess tournament results. This text file, while legible to the human eye, is in a format that is very difficult for a computer to read. Our goal is to input and clean the data, calculate a new variable to display the average pre-tournament ranking for each player’s opponents across ...

2321 sym R (5203 sym/8 pcs)

Data 607 Week 3 Assignment

11.02.2024

Number 1 Using the 173 majors listed in fivethirtyeight.com’s College Majors dataset, we are asked to provide code that identifies the majors that contain either “DATA” or “STATISTICS”. I consulted with Evelyn Bartley on this question in regards to importing the table. I have chosen to present my results as a data frame. # Import the data...

2355 sym

607 Week 2 Assignment

04.02.2024

Code to Connect to PostgreSQL library(RPostgres) con <- dbConnect( Postgres(), dbname = "wk2assignment", host = "localhost", port = 5433, password = "RIGHTFULpun", user = "postgres") dbListTables(con) ## [1] "movies" "surveytakers" "ratings" Pulling the tables into R Studio dbReadTable(con, "movies") ## id ...

78 sym R (2934 sym/8 pcs)

Data 607 Assignment 1

04.02.2024

The Lasting Legacy Of Redlining Introduction Today we will be examining data used by FiveThirtyEight.com to determine whether those neighborhoods that were “redlined” by the Home Owners’ Loan Corporation (HOLC) in the early 20th century are still affected by that designation over a century later. For twenty years, the HOLC worked to grade ne...

2684 sym

DATA 608 Story 1

02.02.2024

Story 1: Equity in the Distribution of the Infrastructure Investment & Jobs Act Funding Allocation Author AJ Strauman-Scott Introduction We are comparing the on the present allocation of the Infrastructure Investment and Jobs Act funding across the 50 states of America against the current residential population, as well as the election results ...

1909 sym 2 img

Data 607 Lab 1-1

01.02.2024

First, import libraries to use in the session. Usually this code would be hidden 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...

521 sym R (1371 sym/6 pcs)