Publications by Kevin Hazenfield
Group 1 Final Project Proposal
Proposal Draft For our first data set, we chose a data set involving passengers on Titanic’s maiden voyage. We downloaded this data set from Kaggle.com. Here is the Link: https://www.kaggle.com/azeembootwala/titanic?select=train_data.csv For the data set, we first read it as a data frame. library(tidyverse) ## -- Attaching packages ------------...
3879 sym R (16872 sym/46 pcs) 13 img
HW2
Question 1 Create a working directory, and download all three data files from Canvas (CVG_Flights.csv, airlines.csv, and airports.csv), put them in the working directory, and read these data files into R as three data frames. library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.0 -- ## v ggplot2 3.3.3 ...
4609 sym R (11406 sym/39 pcs)
Team 1 Project Proposal
Proposal Draft For our first data set, we chose a data set involving passengers on Titanic’s maiden voyage. We downloaded this data set from Kaggle.com. Here is the Link: https://www.kaggle.com/azeembootwala/titanic?select=train_data.csv For the data set, we first read it as a data frame. library(tidyverse) ## -- Attaching packages ------------...
3376 sym R (4046 sym/24 pcs) 7 img
Project Proposal Group 1 1/29/21
Proposal Draft For our first data set, we chose a data set involving passengers on Titanic’s maiden voyage. We downloaded this data set from Kaggle.com. Here is the Link: https://www.kaggle.com/azeembootwala/titanic?select=train_data.csv For the data set, we first read it as a data frame. library(tidyverse) ## -- Attaching packages ------------...
5693 sym R (16883 sym/46 pcs) 13 img
Case 1
Question 1. How many variables and how many observations in the data? To begin, I want to read the relevant file into R, and load the tidyverse. college <- read.csv("college.csv", header = TRUE, stringsAsFactors = TRUE, na.strings = "") library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.0 -- ## v gg...
8074 sym R (8781 sym/33 pcs) 6 img
Case 2
Case 2 Question 1. For CVG_Flights.csv, how many variables and how many observations in the data? For this first question, I want to first read the data and load programs to assist in this case. library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.0 -- ## v ggplot2 3.3.3 v purrr 0.3.4 ## v tibb...
10409 sym R (17029 sym/59 pcs) 6 img
Project Proposal 2 Group 1 2/11/21
Proposal Draft For our first data set, we chose a data set involving passengers on Titanic’s maiden voyage. We downloaded this data set from openml.com. Here is the Link: https://www.openml.org/d/40945 For the data set, we first want to read the data and set up our library programs. #Reading in data titanic <- read.csv("Titanic New Data.csv" ,...
9948 sym R (16023 sym/40 pcs) 10 img