Publications by Jeff Parks

CUNY DATA 607 - Final Project

27.01.2022

CUNY Data 607 - Final Project Overview Project Update Datasets Data Transformations Exporatory Data Analysis Linear Models Conclusions References Appendix Jeff Parks 1/15/2022 CUNY Data 607 - Final Project Overview The spread and effects of COVID-19 misinformation have been widely reported as an obstacle to vaccination. Conspiracy theories ...

12803 sym R (9526 sym/32 pcs) 21 img 6 tbl

Working with XML & JSON

07.01.2022

On Rpubs at: https://rpubs.com/jefedigital/853859 HTML html_url <- 'https://raw.githubusercontent.com/jefedigital/cuny-data-607/main/classes/week%207%20-%20web%20technologies/assignment/data/mybooks.html' html_df <- read_html(html_url) %>% html_elements(xpath='//table') %>% html_table(header=TRUE) %>% as.data.frame() title subtitle au...

83 sym R (1039 sym/3 pcs) 3 tbl

COVID-19 vaccination regression to political alignment and CDC vulnerability indexes

04.01.2022

Part 1 - Introduction The prevalence and intractability of COVID-19 ‘vaccine hesitancy’ over the past 18 months has been alarming to watch, with resistance and misinformation around public health fanned by political figures, media outlets and social media - especially to vulnerable populations in the United States. While COVID-19 vaccine hesi...

9258 sym R (879 sym/1 pcs) 17 img

Web APIs

23.10.2021

CUNY Data 607 - Web APIs Assignment Setup Call API Parse JSON Convert to DataFrame Jeff Parks Oct 24, 2021 CUNY Data 607 - Web APIs Assignment The New York Times web site provides a rich set of APIs, as described here: https://developer.nytimes.com/apis. Your task is to choose one of the New York Times APIs, construct an interface in R to r...

2178 sym R (1124 sym/8 pcs) 3 tbl

Vaccinations

27.09.2021

Vaccination Data Jeff Parks 2021-09-26 Assignment Our source data is a COVID-19 table of Israeli hospitalization rates from August 2021. These data are labeled for patient age and for vaccination status. img: data preview With this data and the inclusion of some broader domain knowledge, we will attempt to answer the following questions: Do y...

3255 sym R (1433 sym/2 pcs) 1 img 1 tbl

chess-tournament

20.09.2021

Project 1 - Chess Tournament Jeff Parks 2021-09-19 Project Description For this project, we’re provided a text file with chess tournament results in a tabular format. Our task is to generate a .CSV file with the following information for all of the players: Player’s Name Player’s State Total Number of Points Player’s Pre-Rating Average ...

3274 sym R (9515 sym/27 pcs) 1 img

Data 607 - Week 3 Assignment

12.09.2021

Data 607 - Week 3 Assignment Jeff Parks 2021-09-11 1. Provide code that identifies the majors that contain either “DATA” or “STATISTICS” library(tidyverse) library(fivethirtyeight) data("college_all_ages") df <- college_all_ages str_subset((df$major),regex("DATA|STATISTICS", ignore_case=TRUE)) ## [1] "Computer Programming And Data Proce...

1671 sym R (1469 sym/13 pcs)

FIlm Ratings

05.09.2021

Film Ratings Jeff Parks 2021-09-05 Introduction For this quick survey, respondents were asked via text-messaging app to rate six recent major Hollywood films on a 1-5 scale (with 1 being the worst and 5 the best.) Black Widow Cruella F9: The Fast Saga Godzilla vs. Kong Jungle Cruise The Green Knight Results were manually entered into an Excel...

3067 sym R (5350 sym/17 pcs) 3 img

FiveThirtyEight - COVIID-19 Approval Tracker

30.08.2021

FiveThirtyEight COVID-19 Approval Tracker Jeff Parks 2021-08-29 Introduction FiveThirtyEight publishes a daily tracker measuring public approval of the President’s handling of the COVID-19 pandemic. Their approach aggregates all available, scientifically-valid surveys from the field, and weights the results from each pollster using a custom ra...

2612 sym 7 img

Transforming Wide Datasets

04.10.2021

Transforming Wide Datasets Assignment Dataset 1: World Governmental Indicators Dataset 2: League of Legends Champions Dataset 3: Global Infant Mortality Rates Jeff Parks 2021-10-06 Transforming Wide Datasets Assignment Three different untidy (or “wide”) datasets were selected in order to practice different methods of data preparation. ...

5937 sym R (8676 sym/19 pcs) 7 img 6 tbl