Authors
Brian 6
Document Latest
12.07.2020
Produce a line graph using ggplotly that shows how many movies were released over time. geom_line <- movies %>% mutate(year = year(release_date)) %>% filter(year >= 1980) %>% count(year) %>% ggplot() + aes(x = year, y = n) + geom_line() +...
1843 sym R (1804 sym/5 pcs) 2 img
Brian Stewart 6
John's Hopkins' Coursera Reproducible Research Assignment Latest
06.08.2020
US Storm Analysis: Natural Phenomenas and Their Affects On Health and Economics Synopsis The analysis that was undertaken in this project was determining which natural weather phenomena created the most detrimental to the United States from 1950...
5577 sym R (5292 sym/24 pcs) 2 img
Chengyu Hang 6
Reproducible Research Course Project 2 Latest
06.12.2020
##SYNOPSIS #Storms and other severe weather events can cause both public health and economic problems for communities and municipalities. Many severe events can result in fatalities, injuries, and property damage, and preventing such outcomes to...
2324 sym R (6451 sym/23 pcs) 2 img
Bowen Zhang 6
Reproducible Research Project 2 - Storm Event Analysis Latest
28.05.2020
Synopsis This analysis utilizes the NOAA storm data (repdata_data_StormData.csv.bz2) to analyse the affects on these weather events on the population. The first question asks: Across the United States, which types of events are most harmful with...
3144 sym R (5099 sym/15 pcs) 2 img
Cindy Vass 6
Assignment 1 Latest
28.10.2020
This assignment is not really a coding assignment. The purpose is mostly to get you used to creating reports in R as you’ll need to do this for future assignments. We will cover reporting in more depth later in the course. Instructions In the...
830 sym R (369 sym/2 pcs)
Carlos Sanchez 6
Diseño Clase 2 Latest
10.02.2023
#Pruebas de Hipotesis Problema 1 Se desea comparar 2 tipos de papa con base al rendimiento (Biomasa de tuberculos), un ensayo utilizó 2 variades (criolla y pastodsa) involucrando 180 plantas de la primera variedad y 200 de la segunda. Los datos...
1268 sym R (1887 sym/33 pcs) 2 img
Caitlin Hanlon 6
SPELUNKR walkthrough Latest
19.07.2021
Designing the “Choose Your Own Adventure” Scenarios Organizing the scenarios The starting point for a Choose Your Own Adventure is the stories. Designing the scenarios can seem a bit overwhelming at first, especially if your story has many...
16586 sym R (9663 sym/35 pcs) 2 img
CKennedy 6
BD validation Latest
07.01.2020
# connection string ch <- odbcConnect("DMU_CMK", uid = "TRACKINGDATAREADER", pwd = "p4_PISk=+MW+Z2~%u_el20zkt") #################Pull BD Tier 4 BDdata <-sqlQuery(ch, paste("SELECT [State_CD], [County_cd], [Birth_def_CD], [Indicator_num],...
735 sym R (10245 sym/67 pcs)
Analisa Peredaran Uang Kuartal Latest
06.03.2022
Analisa Uang Kuarta Sumatra Author : Cak Isa UIN Maliki Malang Dosen Pengampu : Prof DR Suhartono, Mkom *** library(readxl) datainflowsumatera <- read_excel(path = "SUMATRA.xlsx") datainflowsumatera ## # A tibble: 10 x 12 ## Propinsi...
190 sym R (2279 sym/9 pcs) 1 img
Yoon 6
Allowance prices in South Korea Latest
23.01.2020
Data generation data <- read.table("C:/Users/Ag User/Desktop/AAEC/5. 2020 Spring/AAEC 8610/Homework/HW3/data.csv", header = TRUE, sep = ",") e2015 <- mean(subset(data, year == 2015)$price.elec) e2016 <- mean(subset(data, year ==...
1411 sym R (1877 sym/9 pcs) 2 img