alexcfleming / ExploratoryPollutionAnalysis_CourseProject2

Week 4 Peer Graded Project for JHUDS - EDA - Alex Fleming

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Exploratory Pollution Analysis - EDA - Course Project 2

Week 4 Peer Graded Project for JHUDS - EDA - Alex Fleming alex.c.fleming@gmail.com

Questions and Observations

You must address the following questions and tasks in your exploratory analysis. For each question/task you will need to make a single plot. Unless specified, you can use any plotting system in R to make your plot.

  • (Plot 1) Have total emissions from PM2.5 decreased in the United States from 1999 to 2008? Using the base plotting system, make a plot showing the total PM2.5 emission from all sources for each of the years 1999, 2002, 2005, and 2008.(Answer = YES)
  • (Plot 2) Have total emissions from PM2.5 decreased in the Baltimore City, Maryland (fips == "24510") from 1999 to 2008? Use the base plotting system to make a plot answering this question. (Answer = YES, but irregularly)
  • (Plot 3) Of the four types of sources indicated by the type (point, nonpoint, onroad, nonroad) variable, which of these four sources have seen decreases in emissions from 1999–2008 for Baltimore City? Which have seen increases in emissions from 1999–2008? Use the ggplot2 plotting system to make a plot answer this question.(Answer = Point, Non-Point, Non-Road have seen decreases, Onroad has increased slightly)
  • (Plot 4) Across the United States, how have emissions from coal combustion-related sources changed from 1999–2008? (Answer = They have decreased)
  • (Plot 5) How have emissions from motor vehicle sources changed from 1999–2008 in Baltimore City? (Answer = They have decreased)
  • (Plot 6) Compare emissions from motor vehicle sources in Baltimore City with emissions from motor vehicle sources in Los Angeles County, California (fips == "06037"). Which city has seen greater changes over time in motor vehicle emissions? (Answer = Los Angeles)

Background Assignment

Fine particulate matter (PM2.5) is an ambient air pollutant for which there is strong evidence that it is harmful to human health. In the United States, the Environmental Protection Agency (EPA) is tasked with setting national ambient air quality standards for fine PM and for tracking the emissions of this pollutant into the atmosphere. Approximatly every 3 years, the EPA releases its database on emissions of PM2.5. This database is known as the National Emissions Inventory (NEI). You can read more information about the NEI at the EPA National Emissions Inventory web site.

For each year and for each type of PM source, the NEI records how many tons of PM2.5 were emitted from that source over the course of the entire year. The data that you will use for this assignment are for 1999, 2002, 2005, and 2008.

Review Criteria

Does the plot appear to address the question being asked? Is the submitted R code appropriate for construction of the submitted plot?

Data

PM2.5 Emissions Data (summarySCC_PM25.rds): This file contains a data frame with all of the PM2.5 emissions data for 1999, 2002, 2005, and 2008. For each year, the table contains number of tons of PM2.5 emitted from a specific type of source for the entire year. Here are the first few rows.

Data Descriptions

fips: A five-digit number (represented as a string) indicating the U.S. county SCC: The name of the source as indicated by a digit string (see source code classification table) ** SCC - This is the index string used to join the data sets dplyr pacakge utilized ** Pollutant: A string indicating the pollutant Emissions: Amount of PM2.5 emitted, in tons type: The type of source (point, non-point, on-road, or non-road) year: The year of emissions recorded

Source Classification Code Table (Source_Classification_Code.rds): This table provides a mapping from the SCC digit strings in the Emissions table to the actual name of the PM2.5 source. The sources are categorized in a few different ways from more general to more specific and you may choose to explore whatever categories you think are most useful. For example, source “10100101” is known as “Ext Comb /Electric Gen /Anthracite Coal /Pulverized Coal”.

Assignment

You can read each of the two files using the readRDS() function in R. For example, reading in each file can be done with the following code:

NEI <- readRDS("summarySCC_PM25.rds") SCC <- readRDS("Source_Classification_Code.rds")

The overall goal of this assignment is to explore the National Emissions Inventory database and see what it say about fine particulate matter pollution in the United states over the 10-year period 1999–2008. You may use any R package you want to support your analysis.

Output

Final Repository will contain 6 .R indepedent plot generation functions as well as 6 PNG output files

About

Week 4 Peer Graded Project for JHUDS - EDA - Alex Fleming


Languages

Language:R 100.0%