Coder Social home page Coder Social logo

exdata_plotting1's Introduction

Introduction

This assignment uses data from the UC Irvine Machine Learning Repository, a popular repository for machine learning datasets. In particular, we will be using the "Individual household electric power consumption Data Set" which Roger Peng has made available on the course web site:

  • Dataset: Electric power consumption [20Mb] (also available as household_power_consumption.zip in this repository)

  • Description: Measurements of electric power consumption in one household with a one-minute sampling rate over a period of almost 4 years. Different electrical quantities and some sub-metering values are available.

The following descriptions of the 9 variables in the dataset are taken from the UCI web site:

  1. Date: Date in format dd/mm/yyyy
  2. Time: time in format hh:mm:ss
  3. Global_active_power: household global minute-averaged active power (in kilowatt)
  4. Global_reactive_power: household global minute-averaged reactive power (in kilowatt)
  5. Voltage: minute-averaged voltage (in volt)
  6. Global_intensity: household global minute-averaged current intensity (in ampere)
  7. Sub_metering_1: energy sub-metering No. 1 (in watt-hour of active energy). It corresponds to the kitchen, containing mainly a dishwasher, an oven and a microwave (hot plates are not electric but gas powered).
  8. Sub_metering_2: energy sub-metering No. 2 (in watt-hour of active energy). It corresponds to the laundry room, containing a washing-machine, a tumble-drier, a refrigerator and a light.
  9. Sub_metering_3: energy sub-metering No. 3 (in watt-hour of active energy). It corresponds to an electric water-heater and an air-conditioner.

Loading the data

When loading the dataset into R, please consider the following:

  • The dataset has 2,075,259 rows and 9 columns. First calculate a rough estimate of how much memory the dataset will require in memory before reading into R. Make sure your computer has enough memory (most modern computers should be fine).

  • We will only be using data from the dates 2007-02-01 and 2007-02-02. One alternative is to read the data from just those dates rather than reading in the entire dataset and subsetting to those dates.

  • You may find it useful to convert the Date and Time variables to Date/Time classes in R using the strptime() and as.Date() functions.

  • Note that in this dataset missing values are coded as ?.

Making Plots

Our overall goal here is simply to examine how household energy usage varies over a 2-day period in February, 2007. The task is to reconstruct the following plots below, all of which were constructed using the base plotting system.

For each of the four plots, I have:

  • Constructed and saved it to a PNG file with a width of 480 pixels and a height of 480 pixels.

  • Named as plot1.png, plot2.png, etc.

  • Created a separate R code file (plot1.R, plot2.R, etc.) that constructs the corresponding plot, i.e. code in plot1.R constructs the plot1.png plot.Each code file includes code for reading the data so that the plot can be fully reproduced. I have also included the code that creates the PNG file.

  • Added the PNG file and R code file to this git repository

The four plots that needed to be constructed are shown below.

Plot 1

plot of chunk unnamed-chunk-2

This plot is created by plot1.R. This code file:

  1. Reads in the data by sourcing readData.R, which contains a function that:
    • Downloads and/or unzips the data if it not present in the working directory
    • Reads in the data
    • Subsets the data used for these plots
    • Creates a datetime variable that contains the date and time in POSIXlt format
    • Sets the Date variable to date format
    • Returns the data frame
  2. Opens a PNG device
  3. Builds the plot
  4. Closes the device, saving the plot as plot1.png

Plot 2

plot of chunk unnamed-chunk-3

This plot is created by plot2.R. This code file:

  1. Reads in the data by sourcing readData.R, which contains a function that:
    • Downloads and/or unzips the data if it not present in the working directory
    • Reads in the data
    • Subsets the data used for these plots
    • Creates a datetime variable that contains the date and time in POSIXlt format
    • Sets the Date variable to date format
    • Returns the data frame
  2. Opens a PNG device
  3. Sets up an empty plot
  4. Draws a line connecting each pair of (datetime, Global_active_power) values
  5. Closes the device, saving the plot as plot2.png

Plot 3

plot of chunk unnamed-chunk-4

This plot is created by plot3.R. This code file:

  1. Reads in the data by sourcing readData.R, which contains a function that:
    • Downloads and/or unzips the data if it not present in the working directory
    • Reads in the data
    • Subsets the data used for these plots
    • Creates a datetime variable that contains the date and time in POSIXlt format
    • Sets the Date variable to date format
    • Returns the data frame
  2. Restructures the data into long form so that all of the sub metering values are in a single column, with a variable indicating whether the value comes from Sub_metering_1, Sub_metering_2, or Sub_metering_3
  3. Opens a PNG device
  4. Sets up an empty plot
  5. Draws a black line connecting each pair of (datetime, submetering) values for Sub_metering_1
  6. Draws a red line connecting each pair of (datetime, submetering) values for Sub_metering_2
  7. Draws a blue line connecting each pair of (datetime, submetering) values for Sub_metering_3
  8. Adds a legend showing what each line represents
  9. Closes the device, saving the plot as plot3.png

Plot 4

plot of chunk unnamed-chunk-5

This plot is created by plot4.R. This code file:

  1. Reads in the data by sourcing readData.R, which contains a function that:
    • Downloads and/or unzips the data if it not present in the working directory
    • Reads in the data
    • Subsets the data used for these plots
    • Creates a datetime variable that contains the date and time in POSIXlt format
    • Sets the Date variable to date format
    • Returns the data frame
  2. Creates a second data set in long form so that all of the sub metering values are in a single column, with a variable indicating whether the value comes from Sub_metering_1, Sub_metering_2, or Sub_metering_3
  3. Opens a PNG device
  4. Sets the mfrow parameter so that the device will have 4 plots in 2 columns and 2 rows, filling in by row
  5. Creates the first plot using the wide format data:
    • Sets up empty plot
    • Draws a line connecting each pair of (datetime, Global_active_power) values
  6. Creates the second plot using the wide format data:
    • Sets up empty plot
    • Draws a line connecting each pair of (datetime, Voltage) values
  7. Creates the third plot using the long format data:
    • Sets up empty plot
    • Draws a black line connecting each pair of (datetime, submetering) values for Sub_metering_1
    • Draws a red line connecting each pair of (datetime, submetering) values for Sub_metering_2
    • Draws a blue line connecting each pair of (datetime, submetering) values for Sub_metering_3
    • Adds a legend showing what each line represents
  8. Creates the fourth plot using the wide format data:
    • Sets up empty plot
    • Draws a line connecting each pair of (datetime, Global_reactive_power) values
  9. Closes the device, saving the plot as plot4.png

exdata_plotting1's People

Contributors

ecsalomon avatar rdpeng avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.