Publications by Rachel Saidi

Data 101 Homework - Ex. 13.4.6 & 13.5.1

11.03.2021

library(nycflights13) library(tidyverse) 13.4.6 (1) compute average delay by destination flights <- flights delay <- flights %>% filter(!is.na(dep_delay)) %>% group_by(dest) %>% summarise(avg_delay = mean(dep_delay)) airports <- airports airports %>% right_join(delay, c("faa" = "dest")) %>% ggplot(aes(lon, lat, color = avg_delay)) +...

8147 sym R (6962 sym/26 pcs) 6 img

Document

05.03.2021

data = read_csv("/Users/daniellefevre/Documents/DATA101/untidydata2-master/inst/messydata/gdp_by_county.csv") Missing column names filled in: 'X1' [1], 'X2' [2], 'X3' [3], 'X4' [4], 'X5' [5], 'X6' [6], 'X7' [7], 'X8' [8], 'X9' [9] ── Column specification ─────────────────────────────�...

862 sym R (1958 sym/13 pcs)

Untidy data: US Census Farm Produce Data

05.03.2021

Daniel Lefevre Tidying Untidy Datasets library(tidyverse) Registered S3 methods overwritten by 'dbplyr': method from print.tbl_lazy print.tbl_sql ── Attaching packages ──────────────────────────────────────────────────�...

7385 sym R (2500 sym/27 pcs)

DATA 110 Project 1 - Analysis of VAERS Covid-19 Vaccination Data

09.03.2021

Introduction For this assignment, I explored the Vaccine Adverse Event Reporting System (VAERS) dataset. VAERS is a system which allows healthcare providers to create reports for any negative health episode which a patient experiences after receiving a vaccine. Vaccines undergo rigorous testing before they are made available to the public, howeve...

14286 sym R (3654 sym/32 pcs) 4 img

Week 7 Lab 6

21.03.2021

Sampling from Ames, Iowa Using sample data to make inferences about the underlying population. download.file("http://www.openintro.org/stat/data/ames.RData", destfile = "ames.RData") trying URL 'http://www.openintro.org/stat/data/ames.RData' Content type 'unknown' length 146692 bytes (143 KB) =======================================...

7939 sym R (1374 sym/23 pcs) 2 img

Lab 6

21.03.2021

Create a Scatterplot In this example, look at US crime rates at the state level, in 2005, with rates per 100,000 population for crime types such as murder, robbery, and aggravated assault, as reported by the Census Bureau. There are 7 crime types in total. The dataset is clean to begin with. library(readr) library(ggplot2) library(dplyr) ## ## A...

8952 sym R (10585 sym/59 pcs) 32 img

Week 8 DSLabs and HC

30.03.2021

DS Labs Datasets Use the package DSLabs (Data Science Labs) There are a number of datasets in this package to use to practice creating visualizations # install.packages("dslabs") # these are data science labs library("dslabs") data(package="dslabs") list.files(system.file("script", package = "dslabs")) ## [1] "make-admissions.R" ...

7842 sym R (11562 sym/47 pcs) 5 img

MATH 217 Inferential Statistics Lab

05.04.2021

library(tidyverse) library(openintro) Exercise 1 In the first paragraph, several key findings are reported. Do these percentages appear to be sample statistics (derived from the data sample) or population parameters? “59% of the world said that they think of themselves as religious person, 23% think of themselves as not religious whereas 13% ...

20624 sym R (9099 sym/55 pcs) 11 img

Document

14.04.2021

library("rgdal") rgdal: version: 1.5-23, (SVN revision 1121) Geospatial Data Abstraction Library extensions to R successfully loaded Loaded GDAL runtime: GDAL 3.1.4, released 2020/10/20 Path to GDAL shared files: /Library/Frameworks/R.framework/Versions/4.0/Resources/library/rgdal/gdal GDAL binary built with GEOS: TRUE Loaded PROJ runtime: Rel....

10253 sym R (24320 sym/57 pcs) 6 img

Data 110 - Final Project

12.05.2021

Crime Statistics in the United States, 1979 - 2019 Introduction Crime and Policing have a long and complex history in the United States. In this project we examine trends in different categories of crime since 1979. Crime has tended to decrease over time in the United States, all the way back to Colonial times, however there have been intermiten...

27659 sym R (5178 sym/45 pcs) 7 img