Publications by Z. Palmore

Assignment 1

29.08.2020

Introduction An article written by Nathaniel Rakich of FiveThirtyEight described how people from urban and rural communities often vote on partisan lines with rural communities regularly voting for Republicans and more urban communities choosing to vote for Democrats. He wrote that this pattern has continued for years, citing the past 2 president...

5633 sym R (2907 sym/23 pcs) 2 img

InferencewithNumericalData

18.10.2020

library(tidyverse) library(openintro) library(infer) library(statsr) library(psych) Pre-exercise Loading the data for this lab. data(yrbss) Looking at the meaning of variables. ?yrbss Exercise 1 What are the cases in this data set? How many cases are there in our sample? glimpse(yrbss) ## Rows: 13,583 ## Columns: 13 ## $ age ...

10972 sym R (11496 sym/107 pcs) 7 img

Working with XML JSON and HTML

10.10.2020

Directions Pick three of your favorite books on one of your favorite subjects. At least one of the books should have more than one author. For each book, include the title, authors, and two or three other attributes that you find interesting. Take the information that you’ve selected about these three books, and separately create three files wh...

9595 sym R (5902 sym/12 pcs)

SEBrazilClimate

03.10.2020

Objective In this part of project 2, I will be tidying and briefly analyzing climate data from the National Meteorological Institute of Brazil (IMET). It contains hourly surface weather conditions for the Southeastern states of Rio de Janeiro, São Paulo, and Minas Gerais e Espirito Santo. What we would like to know is; Max, min, and mean of tem...

9374 sym R (9104 sym/37 pcs) 1 img

Chess Tournament Text Conversion

19.09.2020

Chess Tournament Text Conversion library(tidyverse) This project will use chess tournament data. Our main objective is to be able to take the raw text file provided and convert it into spreadsheet. It will also need to have certain variables extracted and require calculations to those variables to describe the information. Directions In this pro...

5907 sym R (3980 sym/16 pcs)

Assignment 3 - Strings

12.09.2020

Introduction There are four main topics for this week. They include: Identify and view strings from a list of strings Transform and format messy strings Describe expressions of strings Construct expressions of strings As you can see, each of them will use strings that we generate as well. For these topics we will use the tidyverse package which...

7599 sym R (8710 sym/68 pcs)

Data 607 Assignment 4

26.09.2020

Assignment 4 library(tidyverse) library(readr) library(reshape2) Directions AirlineArrivals The chart above describes arrival delays for two airlines across five destinations. Your task is to: Create a .CSV file (or optionally, a MySQL database!) that includes all of the information above. You’re encouraged to use a “wide” structure s...

6707 sym R (4830 sym/19 pcs) 5 img

Airline Safety

03.10.2020

Objective In this part of project 2, we will find out which airline is the most lethal, of selected airlines. This file contains five airlines with the number of fatalities from accidents in the intervals 1985 to 1999 and from 2000 to 2014. Our objective here is to; Quantify the total fatalities from accidents over 1985 - 2014 for each airline F...

6508 sym R (4534 sym/23 pcs) 3 img

ExamScores_Project2

03.10.2020

Objective In this part of project 2, we will be analyzing education statistics to see if there is a correlation between a student’s performance on exams and their parent’s highest level of education. It was compiled from scores given to high school students in the United States. It is only a small subset of the data from every student, but wi...

6484 sym R (4302 sym/19 pcs) 4 img

NYT Web API

24.10.2020

Directions The New York Times web site provides a rich set of APIs, as described here: https://developer.nytimes.com/apis You’ll need to start by signing up for an API key. Your task is to choose one of the New York Times APIs, construct an interface in R to read in the JSON data, and transform it into an R DataFrame Tools Several packages wer...

5900 sym R (5811 sym/18 pcs) 3 img