Publications by Anna Moy
Project2-Draft
library(tidyverse) 1.Dataset - MTA Daily Ridership Data: Beginning 2020 Load .csv file mta <- read_csv("https://raw.githubusercontent.com/AnnaMoy/Data-607/main/MTA_Daily_Ridership_Data.csv") mta ## # A tibble: 1,452 × 15 ## Date Subways: Total Estim…¹ Subways: % of Compar…² Buses: Total Estimat…³ ## <chr> ...
1209 sym R (13536 sym/28 pcs)
Assignment5
title: “Assignment5” author: “Anna Moy” date: “2024-02-25” output: html_document library(readr) library(dplyr) library(tidyr) library(ggplot2) Read the csv file for airlines airline <- read_csv("https://raw.githubusercontent.com/AnnaMoy/Data-607/main/airline.csv") airline ## # A tibble: 5 × 7 ## ...1 ...2 `Los Angeles` Phoeni...
745 sym R (4829 sym/17 pcs) 1 img
Project1
Load text file into R and removing the —- on the file chess <- read.delim("https://raw.githubusercontent.com/AnnaMoy/Data-607/main/Tournament.txt", sep = "|" ,header = FALSE)[-c(1:4,7,10, 13,16,19,22,25,28,31,34,37,40,43,46,49,52,55,58,61,64,67,70,73,76,79,82,85,88,91,94,97,100,103,106,109,112,115,118,121,124,127,130,133,136,139,142,145,148,151,1...
117 sym R (18673 sym/7 pcs)
Assignment 3
library(tidyverse) library(readr) Using the 173 majors listed in fivethirtyeight.com’s College Majors dataset [https://fivethirtyeight.com/features/the-economic-guide-to-picking-a-college-major/], provide code that identifies the majors that contain either “DATA” or “STATISTICS” Loading the .csv file for College Majors data degree <- r...
1608 sym R (2101 sym/21 pcs)
Data607- Assignment2
Data 607 Week Two - R and SQL Part 1: Build Table Choose six recent popular movies. Ask at least five people that you know (friends, family, classmates, imaginary friends if necessary) to rate each of these movies that they have seen on a scale of 1 to 5. Movies: Mean Girls, Wonka, Aquaman And The Last Kingdom, The Beekeeper, Night Swim and Mig...
2228 sym