Reproducible Research Week4

Size: px
Start display at page:

Download "Reproducible Research Week4"

Transcription

1 Page 1 of 10 Reproducible Research Week4 Assignment Madhu Lakshmikanthan July 31, 2016 This paper analyzes NOAA storm data from 1950 to November, 2011 obtained from Storm Data ( 2Fdata%2FStormData.csv.bz2.) The analysis below finds the worst 6 event types in terms of property damage, crop damage, fatalities and injuries. Also, the event that caused the worst property damage, crop damage, fatalities and injuries respectively is reported. Loading and caching data download.file(" a.csv.bz2","stormdata.bz2") stormdata <- read.table("stormdata.bz2",header = TRUE, sep=",", quote="\"") # create a PROPDMGVAL column. stormdata$propdmgval <- stormdata$propdmg This section answers this question: Across the United States, which types of events have the greatest economic consequences?

2 Page 2 of 10 The code below gets the top 1% of property/crop damages, groups and totals by event type. Next, it gets the top 6 total property/crop damages and plots it against the corresponding events. The code also shows the details of the event that cause the worst property/crop damage ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union

3 Page 3 of 10 # PROPERTY DAMAGE createvalcol <- Vectorize(function(a,b){switch(as.character(a),"h"=b*100,"H"=b* 100,"k"=b*1000,"K"=b*1000, "m"=b* , "M"=b* ,"b"=b* , "B"=b * , "+"=b, "-"=0,"?"=0, "0"=b*10,"1"=b*10, "2"=b*10,"3"=b*10,"4"=b*10,"5"=b*10,"6"=b*10,"7"=b*10,"8"=b*10,0)}) stormdata$propdmgval <- createvalcol(stormdata$propdmgexp,stormdata$propdmg) # filter to get the top 1% of the data in terms of property damage toponepercentpropdmg <- filter(stormdata,stormdata$propdmgval >= quantile(unlis t(stormdata$propdmgval),c(.25,.5,.9,.99))[4]) # group by event groupbyevt <- group_by(toponepercentpropdmg,evtype) # get the top 6 events that caused most property damage summprop <- arrange(summarize(groupbyevt,totalpropdmg=sum(propdmgval,na.rm=tru E)),desc(TOTALPROPDMG))[1:6,] # find the event that cause the most property damage mostpropdmg <- filter(stormdata,stormdata$propdmgval >= max(stormdata$propdmgva L)) dispcols <- names(mostpropdmg) %in% c("evtype","bgn_date","bgn_time", "END_DAT E", "END_TIME","COUNTYNAME","STATE","PROPDMG","PROPDMGEXP") disppropdmg <- mostpropdmg[dispcols] # display the row with details on the event that caused most property damage wi th other details disppropdmg ## BGN_DATE BGN_TIME COUNTYNAME STATE EVTYPE END_DATE ## 1 1/1/2006 0:00:00 12:00:00 AM NAPA CA FLOOD 1/1/2006 0:00:00 ## END_TIME PROPDMG PROPDMGEXP ## 1 07:00:00 AM 115 B

4 Page 4 of 10 EVENT CAUSING THE WORST PROPERTY DAMAGE in US$ (m/m:millions, b/b:billions) # 2 rows in panel par(mfrow = c(2, 1), mar = c(3, 7, 2, 1), oma = c(1, 1, 1, 1)) plot(unclass(summprop$evtype),summprop$totalpropdmg,type="h",col="red",lwd=10,x axt="n",las=2,ylab="",xlab="events",main="figure 1.1: Top 6 Event types by the extent of property damage") axis(1,at=unclass(summprop$evtype),labels=unclass(summprop$evtype),cex.axis=1,l as=2) title(ylab="property Damage",line=5) legend("topright", pch = 1,ncol=2,cex=0.75, legend = c(paste(unclass(summprop$e VTYPE)[1],summprop$EVTYPE[1],sep=":"), paste(unclass(summprop$evtype)[2],summprop$evtype[2],sep=":"),paste(unclass(sum mprop$evtype)[3],summprop$evtype[3],sep=":"), paste(unclass(summprop$evtype)[4],summprop$evtype[4],sep=":"),paste(unclass(sum mprop$evtype)[5],summprop$evtype[5],sep=":"), paste(unclass(summprop$evtype)[6],summprop$evtype[6],sep=":")) ) # CROP DAMAGE stormdata$cropdmgval <- createvalcol(stormdata$cropdmgexp,stormdata$cropdmg) # filter to get the top 1% of the data in terms of crop damage toponepercentcropdmg <- filter(stormdata,stormdata$cropdmgval >= quantile(unlis t(stormdata$cropdmgval),c(.25,.5,.9,.99))[4]) # group by event groupbyevt <- group_by(toponepercentcropdmg,evtype) # get the top 6 events that caused most crop damage summcrop <- arrange(summarize(groupbyevt,totalcropdmg=sum(cropdmgval,na.rm=tru E)),desc(TOTALCROPDMG))[1:6,] plot(unclass(summcrop$evtype),summcrop$totalcropdmg,xaxt="n",las=2,type="h",col ="red",lwd=10,ylab="",xlab="events",main="figure 1.2: Top 6 Event types by the extent of crop damage") axis(1,at=unclass(summcrop$evtype),labels=unclass(summcrop$evtype),cex.axis=1,l as=2) title(ylab="crop Damage",line=5) legend("topright", pch = 1, ncol=2,cex=0.75,legend = c(paste(unclass(summcrop$e VTYPE)[1],summcrop$EVTYPE[1],sep=":"), paste(unclass(summcrop$evtype)[2],summcrop$evtype[2],sep=":"),paste(unclass(sum mcrop$evtype)[3],summcrop$evtype[3],sep=":"), paste(unclass(summcrop$evtype)[4],summcrop$evtype[4],sep=":"),paste(unclass(sum mcrop$evtype)[5],summcrop$evtype[5],sep=":"), paste(unclass(summcrop$evtype)[6],summcrop$evtype[6],sep=":")) )

5 Page 5 of 10 # find the event that cause the most crop damage mostcropdmg <- filter(stormdata,stormdata$cropdmgval >= max(stormdata$cropdmgva L)) dispcols <- names(mostcropdmg) %in% c("evtype","bgn_date","bgn_time", "END_DAT E", "END_TIME","COUNTYNAME","STATE","CROPDMG","CROPDMGEXP") dispcropdmg <- mostcropdmg[dispcols] # display the row with details on the event that caused most crop damage with o ther details dispcropdmg ## BGN_DATE BGN_TIME COUNTYNAME STATE ## 1 8/31/1993 0:00: ADAMS, CALHOUN AND JERSEY IL ## 2 2/9/1994 0:00: MSZ MS ## EVTYPE END_DATE END_TIME CROPDMG CROPDMGEXP ## 1 RIVER FLOOD 5 B ## 2 ICE STORM 2/10/1994 0:00:00 5 B EVENT CAUSING THE WORST CROP DAMAGE in US$ (m/m:millions, b/b:billions)

6 Page 6 of 10 This section answers this question: Across the United States, which types of events (as indicated in the EVTYPE variable) are most harmful with respect to population health? " The code below gets the top 1% of fatalities/injuries, groups and totals by event type. Next, it gets the top 6 total fatalities/injuries and plots it against the corresponding event types. The code also shows the details of the event that cause the worst fatality/max # of injuries # FATALITIES # filter to get the top 1% of the data in terms of fatalities toponepercentfatalities <- filter(stormdata,stormdata$fatalities >= quantile(un list(stormdata$fatalities),c(.25,.5,.9,.99))[4]) # group by event groupbyevt <- group_by(toponepercentfatalities,evtype) # get the top 6 events that caused most fatalities summfatalities <- arrange(summarize(groupbyevt,totalfatalities=sum(fatalities,n a.rm=true)),desc(totalfatalities))[1:6,] # find the event that cause the most fatalities mostfatalities <- filter(stormdata,stormdata$fatalities >= max(stormdata$fatali TIES)) dispcols <- names(mostfatalities) %in% c("evtype","bgn_date","bgn_time", "END_D ATE", "END_TIME","COUNTYNAME","STATE","FATALITIES") dispfatalities <- mostfatalities[dispcols] # display the row with details on the event that caused most fatalities with ot her details dispfatalities

7 Page 7 of 10 ## BGN_DATE BGN_TIME ## 1 7/12/1995 0:00: ## COUNTYNAME STATE EVTYPE ## 1 ILZ003> > > IL HEAT ## END_DATE END_TIME FATALITIES ## 1 7/16/1995 0:00: CST 583 EVENT CAUSING THE WORST FATALITIES plot(unclass(summfatalities$evtype),summfatalities$totalfatalities,xaxt="n",las =2,type="h",col="red",lwd=10,xlab="Events",ylab="Fatalities",main="Figure 2: To p 6 Event types by most fatalities caused") axis(1,at=unclass(summfatalities$evtype),labels=unclass(summfatalities$evtype), cex.axis=1,las=2) legend("topleft", pch = 1,ncol=2, cex=0.75,legend = c(paste(unclass(summfatalit ies$evtype)[1],summfatalities$evtype[1],sep=":"), paste(unclass(summfatalities$evtype)[2],summfatalities$evtype[2],sep=":"),paste (unclass(summfatalities$evtype)[3],summfatalities$evtype[3],sep=":"), paste(unclass(summfatalities$evtype)[4],summfatalities$evtype[4],sep=":"),paste (unclass(summfatalities$evtype)[5],summfatalities$evtype[5],sep=":"), paste(unclass(summfatalities$evtype)[6],summcrop$evtype[6],sep=":")) )

8 Page 8 of 10 # INJURIES # filter to get the top 1% of the data in terms of injuries toponepercentinjuries <- filter(stormdata,stormdata$injuries >= quantile(unlist (stormdata$injuries),c(.25,.5,.9,.99))[4]) # group by event groupbyevt <- group_by(toponepercentinjuries,evtype) # get the top 6 events that caused most injuries summinjuries <- arrange(summarize(groupbyevt,totalinjuries=sum(injuries,na.rm=t RUE)),desc(TOTALINJURIES))[1:6,] # find the event that cause the most injuries mostinjuries <- filter(stormdata,stormdata$injuries >= max(stormdata$injuries)) dispcols <- names(mostinjuries) %in% c("evtype","bgn_date","bgn_time", "END_DAT E", "END_TIME","COUNTYNAME","STATE","INJURIES") dispinjuries <- mostinjuries[dispcols] # display the row with details on the event that caused most injuries with othe r details print("event CAUSING THE WORST INJURIES")

9 Page 9 of 10 ## [1] "EVENT CAUSING THE WORST INJURIES" dispinjuries ## BGN_DATE BGN_TIME COUNTYNAME STATE EVTYPE END_DATE END_TIME ## 1 4/10/1979 0:00: WICHITA TX TORNADO ## INJURIES ## EVENT CAUSING THE WORST INJURIES plot(unclass(summinjuries$evtype),summinjuries$totalinjuries,xaxt="n",las=2,typ e="h",col="red",lwd=10,xlab="events",ylab="injuries",main="figure 3: Top 6 Even t types by the most injuries caused") axis(1,at=unclass(summinjuries$evtype),labels=unclass(summinjuries$evtype),cex. axis=1,las=2) legend("topleft", pch = 1,ncol=2,cex=0.75, legend = c(paste(unclass(summinjurie s$evtype)[1],summinjuries$evtype[1],sep=":"), paste(unclass(summinjuries$evtype)[2],summinjuries$evtype[2],sep=":"),paste(unc lass(summinjuries$evtype)[3],summinjuries$evtype[3],sep=":"), paste(unclass(summinjuries$evtype)[4],summinjuries$evtype[4],sep=":"),paste(unc lass(summinjuries$evtype)[5],summinjuries$evtype[5],sep=":"), paste(unclass(summinjuries$evtype)[6],summinjuries$evtype[6],sep=":")) )

10 Page 10 of 10

Subsetting, dplyr, magrittr Author: Lloyd Low; add:

Subsetting, dplyr, magrittr Author: Lloyd Low;  add: Subsetting, dplyr, magrittr Author: Lloyd Low; Email add: wai.low@adelaide.edu.au Introduction So you have got a table with data that might be a mixed of categorical, integer, numeric, etc variables? And

More information

How to use the SimpleCOMPASS Interface

How to use the SimpleCOMPASS Interface Greg Finak 2018-04-30 Contents 1 Purpose................................ 2 1.1 Prerequisites........................... 2 2 Using SimpleCOMPASS....................... 2 2.1 Reading tabular ICS data.....................

More information

Reliability Coefficients

Reliability Coefficients Reliability Coefficients Introductory notes That data used for these computations is the pre-treatment scores of all subjects. There are three items in the SIAS (5, 9 and 11) that require reverse-scoring.

More information

Data visualization with ggplot2

Data visualization with ggplot2 Data visualization with ggplot2 Visualizing data in R with the ggplot2 package Authors: Mateusz Kuzak, Diana Marek, Hedi Peterson, Dmytro Fishman Disclaimer We will be using the functions in the ggplot2

More information

Chapitre 2 : modèle linéaire généralisé

Chapitre 2 : modèle linéaire généralisé Chapitre 2 : modèle linéaire généralisé Introduction et jeux de données Avant de commencer Faire pointer R vers votre répertoire setwd("~/dropbox/evry/m1geniomhe/cours/") source(file = "fonction_illustration_logistique.r")

More information

Introduction to R. Le Yan HPC User LSU. Some materials are borrowed from the Data Science course by John Hopkins University on Coursera.

Introduction to R. Le Yan HPC User LSU. Some materials are borrowed from the Data Science course by John Hopkins University on Coursera. Introduction to R Le Yan HPC User Services @ LSU Some materials are borrowed from the Data Science course by John Hopkins University on Coursera. 3/2/2016 HPC training series Spring 2016 Outline R basics

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2017 2018 Live Online Version 1 Information last updated 09 October 2017 Please note: Information and dates in this timetable are subject to change. CIMA Cert BA Course

More information

Geographic Information System and its Application in Hydro-Meteorology Exercises using SavGIS

Geographic Information System and its Application in Hydro-Meteorology Exercises using SavGIS Geographic Information System and its Application in Hydro-Meteorology Exercises using SavGIS Jothiganesh Shanmugasundaram Decision Support Tool Development Specialist COPY DATABASE FOLDER BHUTAN in to

More information

M2T Series Rockers Legend Packet

M2T Series Rockers Legend Packet MT Series Rockers Legend Packet Customer Request Form Rocker Types Legend rientation Font Styles Helvetica Light Font Table Helvetica Regular Font Table Helvetica Bold Font Table Helvetica Black Font Table

More information

Advanced Plotting Di Cook, Eric Hare May 14, 2015

Advanced Plotting Di Cook, Eric Hare May 14, 2015 Advanced Plotting Di Cook, Eric Hare May 14, 2015 California Dreaming - ASA Travelling Workshop Back to the Oscars oscars

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2018 Live Online Information version 8 last updated 04/05/18 Please note information and dates are subject to change. Premium Learning Partner 2018 CIMA Cert BA Course Overview

More information

Day 1: Working with Data

Day 1: Working with Data Day 1: Working with Data Kenneth Benoit Data Mining and Statistical Learning February 9, 2015 Why focus on data types and structures? data mining and data science imply that we know how to work with data

More information

Count outlier detection using Cook s distance

Count outlier detection using Cook s distance Count outlier detection using Cook s distance Michael Love August 9, 2014 1 Run DE analysis with and without outlier removal The following vignette produces the Supplemental Figure of the effect of replacing

More information

Introduction to Geospatial Analysis

Introduction to Geospatial Analysis Introduction to Geospatial Analysis Introduction to Geospatial Analysis 1 Descriptive Statistics Descriptive statistics. 2 What and Why? Descriptive Statistics Quantitative description of data Why? Allow

More information

Oracle MaxRep for SAN. Configuration Sizing Guide. Part Number E release November

Oracle MaxRep for SAN. Configuration Sizing Guide. Part Number E release November Oracle MaxRep for SAN Configuration Sizing Guide Part Number E68489-01 release 1.0 2015 November Copyright 2005, 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Distracted Driving- A Review of Relevant Research and Latest Findings

Distracted Driving- A Review of Relevant Research and Latest Findings Distracted Driving- A Review of Relevant Research and Latest Findings National Conference of State Legislatures Louisville, KY July 27, 2010 Stephen Oesch The sad fact is that in the coming weeks in particular,

More information

Package Grid2Polygons

Package Grid2Polygons Package Grid2Polygons February 15, 2013 Version 0.1-2 Date 2013-01-28 Title Convert Spatial Grids to Polygons Author Jason C. Fisher Maintainer Jason C. Fisher Depends R (>= 2.15.0),

More information

Statistical Programming with R

Statistical Programming with R Statistical Programming with R Lecture 9: Basic graphics in R Part 2 Bisher M. Iqelan biqelan@iugaza.edu.ps Department of Mathematics, Faculty of Science, The Islamic University of Gaza 2017-2018, Semester

More information

Introduction to R. Le Yan HPC User LSU. Some materials are borrowed from the Data Science course by John Hopkins University on Coursera.

Introduction to R. Le Yan HPC User LSU. Some materials are borrowed from the Data Science course by John Hopkins University on Coursera. Introduction to R Le Yan HPC User Services @ LSU Some materials are borrowed from the Data Science course by John Hopkins University on Coursera. 10/28/2015 HPC training series Fall 2015 Outline R basics

More information

SAT Released Test 8 Problem #28

SAT Released Test 8 Problem #28 SAT Released Test 8 Problem #28 28.) The 22 students in a health class conducted an experiment in which they each recorded their pulse rates, in beats per minute, before and after completing a light exercise

More information

February 13, notebook

February 13, notebook Module 12 Lesson 1: Graphing on the coordinate plane Lesson 2: Independent and dependent variables in tables and graphs Lesson 3: Writing equations from tables Lesson 4: Representing Algebraic relationships

More information

MICA High Water Mark Mapping Project What WE Learned Mission Assignment 4222DR-OK-COE-SWD-01/02

MICA High Water Mark Mapping Project What WE Learned Mission Assignment 4222DR-OK-COE-SWD-01/02 MICA High Water Mark Mapping Project What WE Learned Mission Assignment 4222DR-OK-COE-SWD-01/02 Disaster DR-4222 Oklahoma Severe Storms, Tornadoes, Straight-line Winds, and Flooding Major Disaster Declaration

More information

Decision Support for Extreme Weather Impacts on Critical Infrastructure

Decision Support for Extreme Weather Impacts on Critical Infrastructure Decision Support for Extreme Weather Impacts on Critical Infrastructure B. W. Bush Energy & Infrastructure Analysis Group Los Alamos National Laboratory Research Applications Laboratory and Computational

More information

SensIT Test and Measurement Version Software Manual

SensIT Test and Measurement Version Software Manual SensIT Test and Measurement Version 2.1.4000.0 Software Manual 10 Thomas, Irvine, CA 92618, USA Toll Free: (800) 23-FUTEK Telephone: (949) 465-0900 Fax: (949) 465-0905 futek@futek.com www.futek.com 2 Table

More information

Below are a few questions you should be asking when planning your communication strategy for potential employee threats:

Below are a few questions you should be asking when planning your communication strategy for potential employee threats: Introduction As an organization, one of your major priorities is keeping the people you employ safe. This can be a difficult task, especially if you aren t prepared. In order to best protect your employees

More information

Scheduling. Scheduling Tasks At Creation Time CHAPTER

Scheduling. Scheduling Tasks At Creation Time CHAPTER CHAPTER 13 This chapter explains the scheduling choices available when creating tasks and when scheduling tasks that have already been created. Tasks At Creation Time The tasks that have the scheduling

More information

Analysing the Divided They Blog network with R/igraph

Analysing the Divided They Blog network with R/igraph Analysing the Divided They Blog network with R/igraph (ACSPRI Summer Program 2017, 6-10 February 2017) Robert Ackland 4 February 2017 Introduction In this exercise we will analyse the Divided They Blog

More information

Minimizing ARP traffic in the AMS-IX switching platform using OpenFlow

Minimizing ARP traffic in the AMS-IX switching platform using OpenFlow Minimizing ARP traffic in the AMS-IX switching platform using OpenFlow Victor Boteanu Hanieh Bagheri University of Amsterdam System and Network Engineering July 3, 2013 Victor Boteanu, Hanieh Bagheri Minimizing

More information

Sirrus. Copyright 2013 SST Software All Rights Reserved

Sirrus. Copyright 2013 SST Software All Rights Reserved Sirrus Copyright 2013 SST Software All Rights Reserved The information contained in this document is the exclusive property of SST Software. This work is protected under United States copyright law and

More information

1. Below is an example 1D river reach model built in HEC-RAS and displayed in the HEC-RAS user interface:

1. Below is an example 1D river reach model built in HEC-RAS and displayed in the HEC-RAS user interface: How Do I Import HEC-RAS Cross-Section Data? Flood Modeller allows you to read in cross sections defined in HEC-RAS models, automatically converting them to Flood Modeller 1D cross sections. The procedure

More information

14B.6 Exploring the Optimal Configuration of the High Resolution Ensemble Forecast System

14B.6 Exploring the Optimal Configuration of the High Resolution Ensemble Forecast System 14B.6 Exploring the Optimal Configuration of the High Resolution Ensemble Forecast System Israel L. Jirak 1*, Adam J. Clark 2, Brett Roberts 1,2,3, Burkely Gallo 2,3, and Steven J. Weiss 1 1 NOAA/NWS/NCEP/Storm

More information

Basics of Plotting Data

Basics of Plotting Data Basics of Plotting Data Luke Chang Last Revised July 16, 2010 One of the strengths of R over other statistical analysis packages is its ability to easily render high quality graphs. R uses vector based

More information

English Bible for the Deaf

English Bible for the Deaf E B D Q W, ' '. W (2 ), ''2 '' 3, '''3 ''' D T B,,. T *,. T,,. W, B. T. D : C: *S G *. H J. :,. :,. I: G *O_T. : * * * *. [ ] :. L: G. : I, I, I. :. : * G * H. : I, I. :,. RUTH 1 E M 1-2 I I. T,. T J.

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

Tutorial on the R package TDA

Tutorial on the R package TDA Tutorial on the R package TDA Jisu Kim Brittany T. Fasy, Jisu Kim, Fabrizio Lecci, Clément Maria, Vincent Rouvreau Abstract This tutorial gives an introduction to the R package TDA, which provides some

More information

Markowitz Asset Allocation Dana Uhlig Tue Jun 26 13:27:

Markowitz Asset Allocation Dana Uhlig Tue Jun 26 13:27: Markowitz Asset Allocation Dana Uhlig Tue Jun 26 13:27:03 2018 library(quantmod) ## Loading required package: xts ## Loading required package: zoo ## ## Attaching package: 'zoo' ## The following objects

More information

INTRODUCTION TO R. Basic Graphics

INTRODUCTION TO R. Basic Graphics INTRODUCTION TO R Basic Graphics Graphics in R Create plots with code Replication and modification easy Reproducibility! graphics package ggplot2, ggvis, lattice graphics package Many functions plot()

More information

Retired. Models HP NJ2000G IntelliJack

Retired. Models HP NJ2000G IntelliJack Overview (Retired) Models HP NJ2000G IntelliJack JD057A Key features Innovative switch with in-the-wall installation Easy, secure port expansion without new cabling PoE powered with PoE forwarding Available

More information

Using crlmm for copy number estimation and genotype calling with Illumina platforms

Using crlmm for copy number estimation and genotype calling with Illumina platforms Using crlmm for copy number estimation and genotype calling with Illumina platforms Rob Scharpf November, Abstract This vignette illustrates the steps necessary for obtaining marker-level estimates of

More information

Building Tools with Python. Evan Caldwell

Building Tools with Python. Evan Caldwell Building Tools with Python Evan Caldwell A quick note on help resources.arcgis.com And for general help with Python Documentation http://docs.python.org/ Tutorials http://www.diveintopython.net/ (free

More information

A Summary of the Types of Graphs Compiled by Mr. A. Caruso

A Summary of the Types of Graphs Compiled by Mr. A. Caruso A Summary of the Types of Graphs A graph is a representation of a relationship between variables. A graph usually has two called the -axis (horizontal) and -axis (vertical). The axes are labeled with different

More information

The Garbage Problem TEACHER NOTES. About the Lesson. Vocabulary. Teacher Preparation and Notes. Activity Materials

The Garbage Problem TEACHER NOTES. About the Lesson. Vocabulary. Teacher Preparation and Notes. Activity Materials About the Lesson In this activity, students will examine data about garbage production, observe comparisons in the data, make predictions based on the data, sketch a graph based on their predictions and

More information

1 Understanding Business Views

1 Understanding Business Views JD Edwards EnterpriseOne Tools Business View Design Guide Release 9.1.x E21483-02 December 2014 1 Understanding Business Views A business view is a selection of data items from one or more tables. After

More information

Gas Infrastructure Europe. Security Risk Assessment Methodology

Gas Infrastructure Europe. Security Risk Assessment Methodology Gas Infrastructure Europe Security Risk Assessment Methodology May 2015 Introduction Gas Infrastructure Europe (GIE) is an association representing the interests of European natural gas infrastructure

More information

South East Region THIRA

South East Region THIRA South East Region THIRA The THIRA follows a four-step process, as described in Comprehensive Preparedness Guide 201, Second Edition: 1. Identify the Threats and Hazards of Concern. Based on a combination

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

Comments and Attachments Created on 2/20/2013 8:49:00 AM. Table of Contents. Comments and Attachments... 1

Comments and Attachments Created on 2/20/2013 8:49:00 AM. Table of Contents. Comments and Attachments... 1 Comments and Attachments Created on 2/20/2013 8:49:00 AM Table of Contents Comments and Attachments... 1 Comments and Attachments Requisition comments and attachments enable requesters to communicate supplemental

More information

We can express this in dataflow equations using gen and kill sets, where the sets are now sets of expressions.

We can express this in dataflow equations using gen and kill sets, where the sets are now sets of expressions. Available expressions Suppose we want to do common-subexpression elimination; that is, given a program that computes x y more than once, can we eliminate one of the duplicate computations? To find places

More information

vcenter Operations Manager for Horizon View Administration

vcenter Operations Manager for Horizon View Administration vcenter Operations Manager for Horizon View Administration vcenter Operations Manager for Horizon View 1.5 vcenter Operations Manager for Horizon View 1.5.1 This document supports the version of each product

More information

Simple Preparedness Steps Toward Resilience

Simple Preparedness Steps Toward Resilience Simple Preparedness Steps Toward Resilience Matt Lyttle Individual and Community Preparedness Division What is Resilience? Economic? Climate? Disaster? Environmental? Ability of individuals, communities,

More information

Analysing Spatial Data in R: Vizualising Spatial Data

Analysing Spatial Data in R: Vizualising Spatial Data Analysing Spatial Data in R: Vizualising Spatial Data Roger Bivand Department of Economics Norwegian School of Economics and Business Administration Bergen, Norway 31 August 2007 Vizualising Spatial Data

More information

Page G Wilkin County Multi-Hazard Mitigation Plan, 2017

Page G Wilkin County Multi-Hazard Mitigation Plan, 2017 Multi-Hazard Plan, 2017 Table G - 3. Actions Identified by the () (From Master Action Chart) Action Comments 2 All-Hazards 5 All-Hazards 6 All-Hazards Local Planning & Regulations Address lack of wireless

More information

TVA Response to the Fukushima Event and Lessons Learned from Recent Natural Disasters

TVA Response to the Fukushima Event and Lessons Learned from Recent Natural Disasters TVA Response to the Fukushima Event and Lessons Learned from Recent Natural Disasters SOUTHERN LEGISLATIVE CONFERENCE July 17, 2011 Agenda Centralized Response Center What We Have Done Key Initiatives

More information

Industrial Accident Notification (IAN) system

Industrial Accident Notification (IAN) system Industrial Accident Notification (IAN) system Information and instructions on the use of the IAN system for points of contacts authorities under the UNECE Convention on the Transboundary Effects of Industrial

More information

Appendix B: Vehicle Dynamics Simulation Results

Appendix B: Vehicle Dynamics Simulation Results Appendix B: Vehicle Dynamics Simulation Results B-1 Vehicle dynamic analyses were undertaken for the three barrier types under each of the curve, shoulder, and barrier placement factors identified. This

More information

MiPCT Dashboard Report Writer

MiPCT Dashboard Report Writer User Guide Document File Name Report_Writer_User_Guide.docx Document Author Kendra Mallon Created July 18, 2016 Copyright 2016 University of Michigan Health System (UMHS). All rights reserved. This documentation

More information

Tutorial for the WGCNA package for R II. Consensus network analysis of liver expression data, female and male mice

Tutorial for the WGCNA package for R II. Consensus network analysis of liver expression data, female and male mice Tutorial for the WGCNA package for R II. Consensus network analysis of liver expression data, female and male mice 2.b Step-by-step network construction and module detection Peter Langfelder and Steve

More information

PERSPECTIVES ON A J100 VULNERABILITY ASSESSMENT OUTCOMES AND LESSONS LEARNED BY MINNEAPOLIS WATER AUGUST 2016

PERSPECTIVES ON A J100 VULNERABILITY ASSESSMENT OUTCOMES AND LESSONS LEARNED BY MINNEAPOLIS WATER AUGUST 2016 PERSPECTIVES ON A J100 VULNERABILITY ASSESSMENT OUTCOMES AND LESSONS LEARNED BY MINNEAPOLIS WATER AUGUST 2016 Mr. Glen Gerads, Director of Minneapolis Water Mr. Andrew Ohrt, PE, Arcadis Agenda What is

More information

www.emdeon.com/enrollnow ALSO ENROLL PAYER 04567 WHEN ENROLLING PAYER 87726 EnrollNow Process- Emdeon ERA enrollment Payer enrollment information for all payers listed below is now processed through a

More information

Applying Mitigation. to Build Resilient Communities

Applying Mitigation. to Build Resilient Communities Applying Mitigation to Build Resilient Communities The Hazards Around Us Think about the natural hazard that... poses the greatest risk to where you live or work OR has had the greatest impact on you personally

More information

AA BB CC DD EE. Introduction to Graphics in R

AA BB CC DD EE. Introduction to Graphics in R Introduction to Graphics in R Cori Mar 7/10/18 ### Reading in the data dat

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *5006791848* MATHEMATICS 0580/32 Paper 3 (Core) May/June 2011 Candidates answer on the Question

More information

Unit 5 Test 2 MCC5.G.1 StudyGuide/Homework Sheet

Unit 5 Test 2 MCC5.G.1 StudyGuide/Homework Sheet Unit 5 Test 2 MCC5.G.1 StudyGuide/Homework Sheet Tuesday, February 19, 2013 (Crosswalk Coach Page 221) GETTING THE IDEA! An ordered pair is a pair of numbers used to locate a point on a coordinate plane.

More information

Overview. Column or Page Access (t CAC ) Access Times. Cycle Time. Random Access (t RAC ) Random Access Cycle Time (t RC )

Overview. Column or Page Access (t CAC ) Access Times. Cycle Time. Random Access (t RAC ) Random Access Cycle Time (t RC ) Overview DRAM manufacturers use a number of different performance specifications to describe the speed and competitiveness of their products. Although useful for comparing the offerings of the various

More information

Improving Perforce Performance At Research In Motion (RIM)

Improving Perforce Performance At Research In Motion (RIM) Improving Perforce Performance At Research In Motion (RIM) Perforce User Conference il 2008 Tim Barrett 1 Agenda RIM s Environment RIM s Perforce performance problems Project approach and major initiatives

More information

Algorithms for GIS csci3225

Algorithms for GIS csci3225 Algorithms for GIS csci3225 Laura Toma Bowdoin College Flow on digital terrain models (I) Flow Where does the water go when it rains? Flooding: What are the areas susceptible to flooding? Sea level rise:

More information

Spatial Ecology Lab 6: Landscape Pattern Analysis

Spatial Ecology Lab 6: Landscape Pattern Analysis Spatial Ecology Lab 6: Landscape Pattern Analysis Damian Maddalena Spring 2015 1 Introduction This week in lab we will begin to explore basic landscape metrics. We will simply calculate percent of total

More information

Water and Solid Contaminant Control in LP Gas

Water and Solid Contaminant Control in LP Gas Particle Analysis Data Final Report on Water and Solid Contaminant Control in LP Gas Docket 11353 by Rod Osborne and Sudheer Pimputkar 100 Battelle Applied Energy Systems 80 Size of human hair Size of

More information

AmeriGEOSS GNC-A Workshop 7-10 June 2016, Colombia

AmeriGEOSS GNC-A Workshop 7-10 June 2016, Colombia AmeriGEOSS GNC-A Workshop 7-10 June 2016, Colombia McIDAS-V Tutorial 5: Normalize Difference Vegetation Index (NDVI) Contents 1. Getting Started...1 2. Changing the Default Background Map...2 3. Loading

More information

George Mason University Department of Civil, Environmental and Infrastructure Engineering

George Mason University Department of Civil, Environmental and Infrastructure Engineering George Mason University Department of Civil, Environmental and Infrastructure Engineering Dr. Celso Ferreira Prepared by Lora Baumgartner December 2015 Revised by Brian Ross July 2016 Exercise Topic: Getting

More information

Transmission, Risk and EPA Air Regulations

Transmission, Risk and EPA Air Regulations Transmission, Risk and EPA Air Regulations Bob Bradish, AEP NCSL/NARUC Transmission Policy Institute May 28, 2015 AEP Overview Headquartered in Columbus, Ohio, AEP is one of the largest electric utilities

More information

Datastage Slowly Changing Dimensions

Datastage Slowly Changing Dimensions Datastage Slowly Changing Dimensions by Shradha Kelkar, Talentain Technologies Basics of SCD Shradha Kelkar Slowly Changing Dimensions (SCDs) are dimensions that have data that changes slowly, rather than

More information

Oracle Utilities Meter Data Management Business Intelligence

Oracle Utilities Meter Data Management Business Intelligence Oracle Utilities Meter Data Management Business Intelligence Data Mapping Guide Release 2.3.2 E23041-01 May 2011 Oracle Utilities Meter Data Management Business Intelligence Data Mapping Guide E23041-01

More information

ADAMS USER GUIDE FOR CRICKETERS

ADAMS USER GUIDE FOR CRICKETERS ADAMS USER GUIDE FOR CRICKETERS Module 2 NPP Player Whereabouts https://adams.wada-ama.org/adams/ TABLE OF CONTENTS Accessing whereabouts on ADAMS...3 My Whereabouts...3 Address Book...4 Create an address...4

More information

Yahoo Messenger Error Code 7 Latest Version 2013

Yahoo Messenger Error Code 7 Latest Version 2013 Yahoo Messenger Error Code 7 Latest Version 2013 You need to install the latest Yahoo Messenger Voice and Video Plug-in to I tried installing and reinstalling and nothing but it telling me there is an

More information

Using Mapmaker s Toolkit. In this tutorial, you will learn the following basic elements of Mapmaker s Toolkit:

Using Mapmaker s Toolkit. In this tutorial, you will learn the following basic elements of Mapmaker s Toolkit: Using Mapmaker s Toolkit Mapmaker s Toolkit is a useful piece of software that allows you and your students to create customized physical, cultural and historical maps of hundreds of countries, states

More information

Variable-Branch Decision Tree

Variable-Branch Decision Tree Variable-Branch Decision Tree based on Genetic Algorithm 楊雄彬 1 Contents Decision tree for compression and recognition K-means algorithm Binary decision tree Greedy decision i tree Twoproblems of greedy

More information

Package funchir. March 6, 2017

Package funchir. March 6, 2017 Version 0.1.4 Title Convenience Functions by Michael Chirico Author Michael Chirico Package funchir March 6, 2017 Maintainer Michael Chirico Depends R (>= 3.2.2) Description

More information

How To Add Music To Iphone Without Deleting Current Music 2013

How To Add Music To Iphone Without Deleting Current Music 2013 How To Add Music To Iphone Without Deleting Current Music 2013 Sep 21, 2014. My first sync with ios8, I couldn't add new music and it removed all the artwork My library contains 48,000 songs, and it took

More information

Energy Assurance State Examples and Regional Markets Jeffrey R. Pillon, Director of Energy Assurance National Association of State Energy Officials

Energy Assurance State Examples and Regional Markets Jeffrey R. Pillon, Director of Energy Assurance National Association of State Energy Officials + NGA State Learning Lab on Energy Assurance Coordination May 13-15, 2015 Trenton, New Jersey Energy Assurance State Examples and Regional Markets Jeffrey R. Pillon, Director of Energy Assurance National

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server 20461 - Querying Microsoft SQL Server Duration: 5 Days Course Price: $2,975 Software Assurance Eligible Course Description About this course This 5-day instructor led course provides students with the

More information

WELCOME TO A SILVER JACKETS WEBINAR ON:

WELCOME TO A SILVER JACKETS WEBINAR ON: WELCOME TO A SILVER JACKETS WEBINAR ON: Flood Vulnerability Assessment for Critical Facilities For audio, call 877-336-1839 Access code: 8165946 Security Code: 4567 MOLLY WOLOSZYN Extension Climate Specialist

More information

Excel Functions & Tables

Excel Functions & Tables Excel Functions & Tables SPRING 2016 Spring 2016 CS130 - EXCEL FUNCTIONS & TABLES 1 Review of Functions Quick Mathematics Review As it turns out, some of the most important mathematics for this course

More information

CSci 1113 Lab Exercise 6 (Week 7): Arrays & Strings

CSci 1113 Lab Exercise 6 (Week 7): Arrays & Strings CSci 1113 Lab Exercise 6 (Week 7): Arrays & Strings Strings Representing textual information using sequences of characters is common throughout computing. Names, sentences, text, prompts, etc. all need

More information

MONITORING REPORT ON THE WEBSITE OF THE STATISTICAL SERVICE OF CYPRUS DECEMBER The report is issued by the.

MONITORING REPORT ON THE WEBSITE OF THE STATISTICAL SERVICE OF CYPRUS DECEMBER The report is issued by the. REPUBLIC OF CYPRUS STATISTICAL SERVICE OF CYPRUS MONITORING REPORT ON THE WEBSITE OF THE STATISTICAL SERVICE OF CYPRUS DECEMBER The report is issued by the Monitoring Report STATISTICAL DISSEMINATION AND

More information

TX360 Use Cases And Case Studies

TX360 Use Cases And Case Studies SWAN ISLAND NETWORKS EXAMPLES TX60 Use Cases And Case Studies 205 Swan Island Networks, Inc. Introduction For over a decade, Swan Island Networks has been providing innovative threat intelligence and situational

More information

PAYER ENROLLMENT INSTRUCTIONS FOR

PAYER ENROLLMENT INSTRUCTIONS FOR PAYER ENROLLMENT INSTRUCTIONS FOR Before enrolling please be sure your Revenue Performance Advisor contract includes the transactions you will be using. If you are unsure of the transactions you are contracted

More information

Institute for Ag Professionals

Institute for Ag Professionals Institute for Ag Professionals Proceedings 2016 Crop Pest Management Short Course & Minnesota Crop Production Retailers Association Trade Show http://www.extension.umn.edu/agriculture/ag-professionals/

More information

Transform and Tidy (Wrangle) Data with R - Required Read Bojan Duric

Transform and Tidy (Wrangle) Data with R - Required Read Bojan Duric Transform and Tidy (Wrangle) Data with R - Required Read Bojan Duric This Notebook is selection of A Very (short) Introduction to R by Paul Torfs & Claudia Brauer and R for Data Scince " by Hadley Wickham

More information

Statistical Programming Camp: An Introduction to R

Statistical Programming Camp: An Introduction to R Statistical Programming Camp: An Introduction to R Handout 3: Data Manipulation and Summarizing Univariate Data Fox Chapters 1-3, 7-8 In this handout, we cover the following new materials: ˆ Using logical

More information

COMED S CATASTROPHIC STORM PLANS

COMED S CATASTROPHIC STORM PLANS COMED S CATASTROPHIC STORM PLANS MEA Electric Operations Conference May 13, 2015 Kimberly A. Smith Director, Emergency Preparedness, Distribution System Operations MEET THE EXELON UTILITIES 2 Chicago,

More information

pvs Release Notes All series

pvs Release Notes All series pvs Release Notes All series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal by CA at any time.

More information

Energy Community Distribution System Operator Initiative

Energy Community Distribution System Operator Initiative Energy Community Distribution System Operator Initiative Mumović Milka Acquis on Electricity Directive 2003/54/EC on internal market in electricity Directive 2005/89 on security of electricity supply Regulation

More information

Kaseya 2. User Guide. Version 1.1

Kaseya 2. User Guide. Version 1.1 Kaseya 2 Anti-Malware User Guide Version 1.1 July 11, 2011 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's

More information

IOWA INCIDENT MANAGEMENT TEAM

IOWA INCIDENT MANAGEMENT TEAM THE IOWA INCIDENT MANAGEMENT TEAM Providing Competent and Caring Assistance to Local Agencies 1 What we d like to share with you today: 1. The All-Hazards Incident Management Team (AHIMT) Concept 2. Details

More information

Threat and Hazard Identification and Risk Assessment (THIRA) In Progress Review (IPR) July 2012

Threat and Hazard Identification and Risk Assessment (THIRA) In Progress Review (IPR) July 2012 Threat and Hazard Identification and Risk Assessment (THIRA) In Progress Review (IPR) 2 13 July 2012 1 Roll Call Region A Region B Region C Region D Region E Region F Region G Region H Region I STL UASI

More information

Fair Use Policy. nbn Ethernet Product Module. Wholesale Broadband Agreement

Fair Use Policy. nbn Ethernet Product Module. Wholesale Broadband Agreement Fair Use Policy nbn Ethernet Product Module Wholesale Broadband Agreement This document forms part of NBN Co s Wholesale Broadband Agreement, which is a Standard Form of Access Agreement for the purposes

More information

AvePoint Cloud Backup. Release Notes

AvePoint Cloud Backup. Release Notes AvePoint Cloud Backup Release Notes Table of Contents Table of Contents... 2 AvePoint Cloud Backup 1.1.1... 3... 3... 3 AvePoint Cloud Backup 1.1.0... 5... 5... 5 AvePoint Cloud Backup 1.0.4... 6... 6...

More information

STRATEGY ATIONAL. National Strategy. for Critical Infrastructure. Government

STRATEGY ATIONAL. National Strategy. for Critical Infrastructure. Government ATIONAL STRATEGY National Strategy for Critical Infrastructure Government Her Majesty the Queen in Right of Canada, 2009 Cat. No.: PS4-65/2009E-PDF ISBN: 978-1-100-11248-0 Printed in Canada Table of contents

More information

Energy Assurance Energy Assurance and Interdependency Workshop Fairmont Hotel, Washington D.C. December 2 3, 2013

Energy Assurance Energy Assurance and Interdependency Workshop Fairmont Hotel, Washington D.C. December 2 3, 2013 + Energy Assurance Energy Assurance and Interdependency Workshop Fairmont Hotel, Washington D.C. December 2 3, 2013 Jeffrey R. Pillon, Director, Energy Assurance Programs National Association of State

More information