Publications by Anthony Conrardy
Assignment #5
Assignment Week #5 knitr::include_graphics("assignment_4.png") Import Untidy Data from MySQL Database flight_db <- dbConnect(MySQL(), user = "aconrardy", password = "DocGrad2023*", dbname = 'assignment_week_5', host = "data607b.mysql.database.azure.com") flight_data <- dbReadTable(flight_db, "flight_data") flight_data ## ident_city arrival_c...
4329 sym Python (7538 sym/9 pcs) 4 img
Lab #3 Probability-Conrardy
The Hot Hand Basketball players who make several baskets in succession are described as having a hot hand. Fans and players have long believed in the hot hand phenomenon, which refutes the assumption that each shot is independent of the next. However, a 1985 paper by Gilovich, Vallone, and Tversky collected evidence that contradicted this beli...
14354 sym 3 img
Lab #2 Introduction to Data-Conrardy
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 generat...
14719 sym 9 img
Project #1
Chess Tournament File We will pull in the Chess Tournament Results table from the text file to begin manipulating the structure to create the proposed CSV file to be imported into a SQL database. Once loaded we can view the structure of the results and plan a way to extract the data for our CSV file. According to the Project 1 Assignment direct...
5054 sym
Extra Credit #2 Assignment
Assignment Basis Based on difference in ratings between the chess players and each of their opponents in our Project 1 tournament, calculate each player’s expected score (e.g. 4.3) and the difference from their actual score (e.g 4.0). List the five players who most over performed relative to their expected score, and the five players that mo...
2824 sym Python (5811 sym/10 pcs)
Assignment #3
Exercise #1-FiveThirtyEight College Major Data The data was retrieved directly from the FiveThirtyEight website GitHub. It should be noted that the data was last committed over ten (10) years ago. data_538_majors <- read.csv("https://raw.githubusercontent.com/fivethirtyeight/data/master/college-majors/majors-list.csv") Identifying Data or Statis...
4790 sym
DATA 607 Assignment #2
Overview This is Assignment #2 for DATA 607. For this particular assignment I chose to create some of the data that will be used in this project by randomly assigning values for the movie ratings, as well as missing data, for ten (10) participants. The data set is available on GitHub at: https://github.com/Aconrard/DATA607/blob/main/Assignment2...
2690 sym
DATA 607 Assignment #1
Overview This is Assignment #1 for DATA 607. For this particular assignment I chose to use some of the data that was analyzed in the article “How Americans View Biden’s Response to the Coronavirus Crisis”. This was interesting since most of my time was dedicated toward pandemic response and there was definitely a different “feeling” o...
2931 sym Python (3118 sym/7 pcs) 1 img
Lab Exercise #1
library(tidyverse) library(openintro) data(arbuthnot) glimpse(arbuthnot) ## Rows: 82 ## Columns: 3 ## $ year <int> 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639… ## $ boys <int> 5218, 4858, 4422, 4994, 5158, 5035, 5106, 4917, 4703, 5359, 5366… ## $ girls <int> 4683, 4457, 4102, 4590, 4839, 4820, 4928, 4605, 4457, 495...
6318 sym 4 img
Test1
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...
598 sym 1 img